11
11

More than 5 years have passed since last update.

CSSで背景に正円を適用する方法

Posted at

CSSメモ。
高さと幅を指定すること。高さを指定するので、要素はブロック要素。

#hoge{
    background: #cccccc;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
11
11
0

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
11
11