css width screen code example
Example 1: css media screen
@media (max-width: 991px){
.mobile{
display: block;
}
}
Example 2: width in % of a screen css
1vw = 1% of viewport width
1vh = 1% of viewport height
@media (max-width: 991px){
.mobile{
display: block;
}
}
1vw = 1% of viewport width
1vh = 1% of viewport height