1<styletype="text/css">23form{/*定义表单标记form的样式*/4border:1px dotted blue;/*通过缩写的形式定义form的表框border样式,分别为border-width、border-style、border-color*/5padding:1px 6px;/*定义填充padding的样式,缩写给出两个属性值时,前者为上下边距的宽度、后者为左右边距的宽度*/6margin:0px;...
所有浏览器都支持 border-style 属性。 注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit" 或 "hidden"。定义和用法 border-style 属性用于设置元素所有边框的样式,或者单独地为各边设置边框样式。 只有当这个值不是 none 时边框才可能出现。 例子1 border-style:dotted solid double dashe...
border-left-style: solid; border-left-width: 5px; border-top-color: green; border-top-style: dashed; border-top-width: 5px; border-right-color: blue; border-right-style: solid; border-right-width: 2px; border-bottom-color: blueviolet; border-bottom-style: solid; border-bottom-width: 5...
<style>.form{width:600px;height:44px;border:2pxsolid#4569ff;border-radius:10px;overflow:hidden;}.text{width:468px;height:44px;float:left;border:none;padding:016px;}.text:focus{outline:none;}.btn{width:100px;height:44px;float:left;border:none;background-color:#4e6ef2;color:#fff;cursor...
border的三个属性分别为:border-width(边框宽度)、border-color(边框颜色)、border-style(边框样式)。简写的形式是最常用的方式,例如:border:4px #24b3a3 solid 多个边框长得一样 .customContent{border:4px red solid;/* 边框宽度:4px、边框颜色:红色、边框样式:单实线边框 */} ...
border-style:dotted solid double;上边框是点状 右边框和左边框是实线 下边框是双线border-style:dotted solid;上边框和下边框是点状 右边框和左边框是实线border-style:dotted;所有4个边框都是点状 默认值: not specified 继承: no 版本: CSS1 JavaScript 语法: object object.style.borderStyle="dotted double"...
上例是同时设置上、下、左、右四面的边框,也可以单独设置一面的边框:border-top-style(上边框),border-bottom-style(下边框),border-left-style(左边框),border-right-style(右边框). 2.border-width属性 设置边框宽度,为边框指定宽度有两种方法:可以指定长度值,比如2px或0.1em(单位为px,pt,cm,em等),或者使...
border-style标签也可以简式定义样式,如下面的样式语句定义了顶部边框线条类型为dotted、右侧边框线条类型为solid、底部边框线条类型为double、左侧边框线条类型为dashed,定义顺序分别是上、右、底、左。下面的样式语句定义了顶部边框线条类型为dotted、左、右侧边框线条类型为solid、底部边框线条类型为double,定义顺序分别...
border-style:dotted solid double;上边框是点状 右边框和左边框是实线 下边框是双线border-style:dotted solid;上边框和下边框是点状 右边框和左边框是实线border-style:dotted;所有4个边框都是点状 默认值: not specified 继承: no 版本: CSS1 JavaScript 语法: object object.style.borderStyle="dotted double"...