角を丸めるにはborder-radius
プロパティを用います。
数字が大きいほど角が丸くなります。
index.html
<div class="box"></div>
style.css
.box {
border-radius: 10px;
}
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
角を丸めるにはborder-radius
プロパティを用います。
数字が大きいほど角が丸くなります。
<div class="box"></div>
.box {
border-radius: 10px;
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked