Подробное описание и демонстрация работы эффекта наведения для ссылки под номером №6 для библиотеки Bootstrap. Html и CSS код для оформления ссылок на сайте как на изображении.
HTML разметка и CSS стили для оформления ссылок на сайте<a href="#" class="link">hover me</a>
.link{ display: inline-block; padding: 5px 20px; font-size: 20px; color: #444; text-transform: uppercase; overflow: hidden; z-index: 1; position: relative; transition: all 0.3s ease 0s; } .link:hover{ color: #fc8a3f; } .link:before{ content: ""; width: 100%; height: 40%; background: rgba(252,138,63,0.5); position: absolute; bottom: 0; left: -100%; z-index: -1; transition: all 0.3s ease 0s; } .link:hover:before{ left: 0; } @media only screen and (max-width: 767px){ .link{ margin-bottom: 20px; } }