大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
!DOCTYPE html
创新互联公司网站建设10余年坚持,服务企业网站设计、自适应网站建设等网站建设服务。数千家企业的合作经验,帮助我们为服务企业不断提升价值。为企业建设开发网站和维护,主推个性化定制型网站设计
html lang="en"
head
meta charset="UTF-8"
titletest/title
style
div {
text-align: center;
margin-bottom: 20px;
width: 100px;
height: 100px;
line-height: 100px;
}
.a {
/*圆点*/
border: 10px dotted red;
}
.b {
/*实线*/
border: 10px solid red;
}
.c {
/*双实线*/
border: 10px double red;
}
.d {
/*虚线*/
border: 10px dashed red;
}
/style
/head
body
div class="a"
圆点
/div
div class="b"
实线
/div
div class="c"
双实线
/div
div class="d"
虚线
/div
/body
/html
在CSS 中常见的边框(border) 属性有以下几种:
border-style
border-width
border-color
border-top-, border-left-, border-bottom-, border-right-
border
border-style
border-style属性指定边框的样式。以下的表格列出这个属性可能有的值,以及每一个值显现出来的结果。
border-width
border-width属性是用来设定边框的宽度。可用的值为thin (薄)、medium (中等)、thick (厚),或是一个数字。
border-color
border-color属性是用来设定边宽的颜色。
border-top-, border-left-, border-bottom-, border-right-
我们可以将方向(top -上、bottom -下、left -左、right -右)和样式、宽度、及颜色合起来而成为一个属性。举例来说, border-top-style属性就是用来设定上边框的样式。以下举几个例子:
border
若四边的边框属性都一样,那我们可以用一个border属性来描述,而不必四个边都描述一次。另外,我们可以在同一行一次宣告边框样式、边框宽度、以及边框颜色。
p {
border:#0000FF 5px solid;
}
那以下的HTML,
p用一行来宣布所有边框的属性/p
会显现出
border线型主要有:
1、dotted【点状】
2、solid【实线】
3、double【双实线】
4、dashed;【虚线】
实例一:如果一个CSS这样写:border-style:dotted solid double dashed; 出来的框就是:上边框是点状,右边框是实线,下边框是双线,左边框是虚线
实例二:如果一个CSS这样写:border-bottom:1px dashed #000000;出来的框就是:一条宽度为1像素的黑色下划虚线。
以此类推。多试试就知道什么效果了哦。
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的style标签中,输入css代码:div {height:60px;border-bottom:1px dashed}。
3、浏览器运行index.html页面,此时通过css定义了一个水平的虚线。
css有两种虚线形式,一种是dashed,一种是dotted;如:
div style="width:100px;height:100px;border:1px dashed red"/div
div style="width:100px;height:100px;border:1px dotted red"/div
效果图如下:
style type="text/css"
!--
.dashed_tbl {
border-top: 1px dashed #333333;
border-left: 1px dashed #333333;
}
.dashed_tbl td{
border-bottom:1px dashed #333333;
border-right:1px dashed #333333;
padding:3px 10px;
}
--
/style
table cellpadding="0" cellspacing="0" class="dashed_tbl"
tr
td123/td
td234/td
td345/td
/tr
tr
td123/td
td234/td
td345/td
/tr
tr
td123/td
td234/td
td345/td
/tr
/table
是不是这样的?