IP/2_lab/testBootstrap_main/banner.css
2023-10-24 11:06:11 +04:00

27 lines
338 B
CSS

#banner{
display: flex;
}
#banner a img.banner-show {
height: auto;
width: auto;
justify-content: center;
}
#banner a img.banner-hide {
height: 0;
width: 0;
opacity: 0;
visibility: hidden;
transition: opacity 1s, visibility 0s 1s;
display: none;
}
#banner > a{
display: block;
}