EN
CSS - what is difference between width: 100% and width: 100vw?
1 answers
8 points
What is the difference between width: 100%
and width: 100vw
in CSS?
1 answer
5 points
The vw
values stand for viewport width.
Here is the main difference:
width: 100vw
means 100% of the viewport width,width: 100%
means 100% of the parent's element width.
See also
0 commentsShow commentsAdd comment