Position
Posted misubishi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Position相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Position</title> <link rel="stylesheet" href="Position.css" /> </head> <body> <div class="box" id="one">One</div> <div class="box" id="two">Two</div> <div class="box" id="three">Three</div> <div class="box" id="four">Four</div> </body> </html>
.box { display: inline-block; width: 100px; height: 100px; background: red; color: white; } #two { position: static; top: 20px; left: 20px; background: blue; }
实验效果为:
以上是关于Position的主要内容,如果未能解决你的问题,请参考以下文章