Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Web ページにボタンがあります。
<button id="button" type="button">Show</button>
ボタンを青色にして、可能であれば角を丸くしたいです。どうやってやるの??スタイリングは本当に初心者です。
マークアップを修正しました
<button class="button">SHOW</button> /*..you were missing the > ...*/
とcss
.button{ background-color:blue; border-radius:10px; }
例
この CSS を試してください:
#button { background: blue; border-radius: 35px; border: none; }
フィドル: http://jsfiddle.net/qLZKs/