Он работает с простым HTML https://codepen.io/Ariel-Ariel-the-bold/pen/MYgvvxZ
Код: Выделить всё
This is a text
.rootc {
display: flex;
}
.container {
flex-grow: 1;
flex: 1;
position: relative;
background-color: green;
}
.div1 {
width: 100%;
background-color: red;
}
.div1:hover ~ .div2 {
display: flex;
}
.div2 {
position: absolute;
background-color: yellow;
top: 0; left: 0; right: 0;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
display: none;
}
в приложении vue, это мигает
как мне добиться этого в приложении vue? спасибо
Подробнее здесь: https://stackoverflow.com/questions/793 ... s-blinking
Мобильная версия