只需懸停對下面的代碼段中的'標題',您將看到元素如何移動。爲什麼?在懸停移動元素上添加邊框並移動周圍元素
沒有餘量..而且他們只是在將邊框添加到inline-block
元素時才移動。嘗試在section.twelve a
像添加更多的邊框寬度:
section.twelve a {
border-bottom: 10px solid #FFFAFF;
}
但是,如果你刪除邊框一切都很好。爲什麼是這種行爲?而且它只是爲了邊界?
我只想添加任何樣式到元素而不影響其他元素。
section{
position: relative;
height: 300px;
padding: 15px 80px;
z-index: 1;
}
section h1{
font-size:3em;
font-weight: 100;
line-height: 1.3;
}
section a {
position: relative;
display: inline-block;
text-decoration: none;
transition: all 0.3s ease-in-out;
vertical-align: bottom;
}
section.twelve {
background: #121A5A;
color: #FFFAFF;
}
section.twelve a {
color:#D8315B;
font-weight: 700;
overflow: hidden;
padding: 0px 5px;
transition all 0.2s ease;
border-bottom: 5px solid #FFFAFF;
}
.twelve a:before{
content: "";
top:0; left: 0;
position: absolute;
width:100%; height: 100%;
background: #FFFAFF;
z-index: -1;
transition: all 0.2s ease;
transform: translateX(100%);
}
.twelve a:hover::before {
transform: translateX(-95%);
background: #D8315B;
}
.twelve a:hover{
color: #FFFAFF;
transform: translateX(5px);
border-bottom: 1px solid #FFFAFF;
}
<section class="twelve">
<h1>Write <a href="#">a headline</a> that makes people do kind of a double take whenthey read it.</h1>
</section>