私はこの問題を解決する方法がわかりません: 'a'要素のホバー上ではdivが拡大し、もう一方は '移動'します。ここでは、ヘルプホバー上のフィックス拡張要素
https://jsfiddle.net/0r2v2qyp/
ため
感謝のhtml:
<a id="btn_agency" class="btn_presentation">Agenzia</a>
<a id="btn_student" class="btn_presentation">Studente</a>
<a id="btn_prof" class="btn_presentation">Docente</a>
<a id="btn_admin" class="btn_presentation">Segreteria</a>
とCSS:
.btn_presentation {
float: left;
margin: 10px;
color: royalblue;
font-size: 20px;
position: relative;
letter-spacing: 0;
text-transform: uppercase;
transition: all .2s ease-out;
}
.btn_presentation:after {
content: '';
position: relative;
display: block;
margin: 0 auto;
width: 0;
height: 0;
background: red;
transition: all .2s ease-out;
}
.btn_presentation:hover {
letter-spacing: 5px;
transition: all .3s ease-in;
}
.btn_presentation:hover:after {
width: 100%;
height: 2px;
transition: all .2s ease-in-out;
}
を伸ばす
コメントに基づいて更新しますか? – LGSon
彼は近くの他のテキストが押し出されることなく、ホバーでテキストが増加したいと思っています。 – Omnitored
正確には、感知した – Toma