黄片三级中文字幕在线观看_蜜月av侵在线看免费_中文自拍另类中文亚洲无线码_中文字幕av无码免费一区

其他(360、58、霸屏、搜狗、小程序)等代理合作請(qǐng)發(fā)郵箱254596208@qq.com
站內(nèi)公告:  如果您有其它業(yè)務(wù)聯(lián)系,請(qǐng)發(fā)郵件至yaner@y1web.com郵箱,謝謝您的配合!
營(yíng)銷(xiāo)型網(wǎng)站建設(shè)第一品牌——優(yōu)度網(wǎng)絡(luò)
現(xiàn)在的位置:首頁(yè) > 發(fā)布營(yíng)銷(xiāo)型網(wǎng)站建設(shè) > 新聞資訊 > 表格邊框樣式 DIV+css
表格邊框樣式 DIV+css
信息來(lái)源:優(yōu)度網(wǎng)絡(luò)  發(fā)布日期:2009/3/26 瀏覽數(shù)量:1079
文章導(dǎo)讀:

<html>
<head>
<title>border-style</title>
<style type="text/css">
<!--
div{
 border-width:6px;
 border-color:#000000;
 margin:20px; padding:5px;
 background-color:#FFFFCC;
}
-->
</style>
   </head>

<body>
 <div style="border-style:dashed">The border-style of dashed.</div> 
 <div style="border-style:dotted">The border-style of dotted.</div>
 <div style="border-style:double">The border-style of double.</div>
 <div style="border-style:groove">The border-style of groove.</div>
 <div style="border-style:inset">The border-style of inset.</div>
 <div style="border-style:outset">The border-style of outset.</div>
 <div style="border-style:ridge">The border-style of ridge.</div>
 <div style="border-style:solid">The border-style of solid.</div>
</body>
</html>