「CSS3入門」border-radiusを使用して画像で角丸を表現する
border-radius プロパティ
要素の境界の外側の角を丸めます。
サンプルコード
<style> div { border:3px solid #a1a1a1; padding:5px 20px; background:#dddddd; width:100px; border-radius:25px; } </style> <div>border-radius test data </div>
Coding Changes the World
border-radius プロパティ
要素の境界の外側の角を丸めます。
サンプルコード
<style> div { border:3px solid #a1a1a1; padding:5px 20px; background:#dddddd; width:100px; border-radius:25px; } </style> <div>border-radius test data </div>