需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:
div {margin-left: 100pxborder-right:1px dashed blackheight:150pxwidth:1px}
3、浏览器运行index.html页面,此时成功用css和div实现了垂直的点虚线。
border线型主要有:1、dotted【点状】
2、solid【实线】
3、double【双实线】
4、dashed【虚线】
实例一:如果一个CSS这样写:border-style:dotted solid double dashed出来的框就是:上边框是点状,右边框是实线,下边框是双线,左边框是虚线
实例二:如果一个CSS这样写:border-bottom:1px dashed #000000出来的框就是:一条宽度为1像素的黑色下划虚线。
以此类推。多试试就知道什么效果了哦。
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>test</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>