我正在学习CSS并且被相对布局弄糊涂了。如果您为定位提供冲突的属性值会发生什么?例如left: 50px;
和right 50px;
我已经尝试过自己,据我所知,如果同时有right
和left
,right
总会被删除。还有top
vs bottom
?
实施例
<!DOCTYPE html>
<html>
<head>
<style>
div.relative {
position: relative;
left: 30px;
right: 30px;
border: 10px solid #73AD21;
}
</style>
</head>
<body>
<h2>position: relative;</h2>
<p>Lorem Ipsum insert text here....</p>
<div class="relative">
This div element has position: relative;
</div>
</body>
</html>