LoginSignup
1
0

More than 5 years have passed since last update.

擬似要素 before、after

Last updated at Posted at 2018-04-22

before

スクリーンショット 2018-04-22 16.39.44.png

.box-01
.box-01 {
  width: 300px;
  height: 300px;
  background-color: #cccccc;
  &::before {
    width: 60px;
    height: 60px;
    display: inline-block;
    content: "";
    background-color: red;
    border-radius: 50%;
  }
}

after

スクリーンショット 2018-04-22 16.39.48.png

.box-02

.box-02 {
  width: 300px;
  height: 300px;
  background-color: #cccccc;
  &::before {
    width: 60px;
    height: 60px;
    display: inline-block;
    content: "";
    background-color: red;
    border-radius: 50%;
  }
}
1
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0