在CSS中,我們可以使用border屬性來設(shè)置元素的邊框。border可以設(shè)置邊框的寬度、樣式和顏色等屬性。
{ border: 1px solid black; }
上述代碼中,1px指定了邊框的寬度,solid指定了邊框的樣式,black指定了邊框的顏色。
{ border-top: 1px solid black; border-right: 2px dashed red; border-bottom: 3px dotted blue; border-left: 4px double green; }
上述代碼中,我們可以使用border-top、border-right、border-bottom、border-left分別指定不同方向的邊框樣式。1px、2px、3px、4px指定了不同的邊框?qū)挾龋瑂olid、dashed、dotted、double指定了不同的邊框樣式,black、red、blue、green指定了不同的邊框顏色。
{ border-radius: 5px; border-top-left-radius: 10px; border-top-right-radius: 15px; border-bottom-right-radius: 20px; border-bottom-left-radius: 25px; }
上述代碼中,我們可以使用border-radius或border-top-left-radius、border-top-right-radius、border-bottom-right-radius、border-bottom-left-radius分別指定元素的圓角半徑。5px、10px、15px、20px、25px指定了不同的圓角半徑大小。
上一篇css中文本居中屬性
下一篇iis與php