建議學習時長: 15分鐘
學習方式:了解
學習目標
- 知道邊框的寫法
詳細介紹
邊框有如下屬性
- border-width
- border-style
- border-color
- border
- border-image
- border-radius
寫法如:
border: 2px solid #f00;
box-shadow 和 border-radius 配合,可以做內圓角
background: tan;
border-radius: .8em;
padding: 1em;
box-shadow: 0 0 0 .6em #655;
outline: .6em solid #655;
border-radius
用 border-radius 做的各種形狀好玩的按鈕, 見[BonBon:Sweet CSS3 Buttons](http://simurai.com/
archive/buttons)