css里对各个标签的处理

来源:互联网 发布:淘宝做客服考试答案 编辑:程序博客网 时间:2024/05/21 22:30
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div{
width:200px;
height: 200px;
border: 2px solid blue;
padding:30px;
margin: 30px;
}
#qwe123{
    border-top: 2px dashed green;
border-bottom: 2px dashed blue;
border-left: 2px  dashed orange;
border-right: 2px solid gray; 
position: absolute;

top: 800px;
left: 50px;

</style>
</head>
<body>
<div id="qwe123">aaaaaaaaaaaaaaa</div>
<div id="div223">BBBBBBBBBBBBBBBB</div>
<div id="div2223">BBBBBBBBBBBBBBBB</div>
</body>
</html>
原创粉丝点击