你的位置:首页 > 软件开发 > 网页设计 > CSS知识总结(五)

CSS知识总结(五)

发布时间:2016-08-12 14:00:05
CSS常用样式 3.边框样式  1)边框线    border-style : none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset    常用的边框线:dot ...

CSS常用样式

 

3.边框样式

  1)边框线

    border-style : none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset

    常用的边框线:dotted(点状)、dashed(虚线)、solid(实线)、double(双实线)

    border-top-style    设置上边框线

    border-bottom-style  设置下边框线

    border-left-style    设置左边框线

    border-right-style    设置右边框线

    例子:

/* CSS代码 */.style{  width:100px;  height:100px;  border-top-style:dotted;  border-bottom-style:dashed;  border-left-style:solid;  border-right-style:double;}

原标题:CSS知识总结(五)

关键词:CSS

CSS
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。