margin-left 和 margin-right 同时设为负值的新认知
Posted chaoyueqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了margin-left 和 margin-right 同时设为负值的新认知相关的知识,希望对你有一定的参考价值。
之前对margin的理解,都是用来改变容器位置的,今天发现在特定情况下 ,margin也可以改变容器的大小。
当不指定容器的宽度(这里指的是具体值和百分比),即容器的宽度为width: auto时,同时给该容器的margin-left和margin-right设置一个负值,可以增大容器的宽度。(垂直方向上不是同理的)
案例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="style.css" />
<style>
.wrap {
width: 500px;
height: 500px;
background: #ccc;
margin: 0 auto;
}
.test {
height: 50px;
border: 1px solid #0000FF;
}
.test:hover {
margin-left: -20px;
margin-right: -20px;
}
.icon-color {
color: blue;
}
</style>
</head>
<body class="icon-color">
<div class="wrap">
<div class="test">子级</div>
父级
</div>
</body>
</html>
效果图:
具体原理还不懂,学无止境,继续加油......
参考文章:https://www.jianshu.com/p/549aaa5fabaa
以上是关于margin-left 和 margin-right 同时设为负值的新认知的主要内容,如果未能解决你的问题,请参考以下文章
行内元素的margin-left和margin-right的用法注意