初用方块
Posted bogy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初用方块相关的知识,希望对你有一定的参考价值。
html部分
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Frame</title>
<link rel="stylesheet" href="Frame.css">
</head>
<body>
<div class = "Frame" id="one">one</div>
<div class = "Frame" id="two">two</div>
<div class = "Frame" id="three">three</div>
<div class = "Frame" id="four">four</div>
</body>
</html>
css部分
.Frame{
display:inline-block;/*inline表示横向排列,不能设置宽高,block表示纵向排列*/
width: 100px;
height: 100px;
background: red;
color: white;
}
display:inline-block;/*inline表示横向排列,不能设置宽高,block表示纵向排列*/
width: 100px;
height: 100px;
background: red;
color: white;
}
#two{
position:relative;
top: 20px;
left: 20px;
background: blue;
}
position:relative;
top: 20px;
left: 20px;
background: blue;
}
以上是关于初用方块的主要内容,如果未能解决你的问题,请参考以下文章