vh and vw
/*vh viewport height and vw viewport width*/
/*example*/
div
{
display: inline-block;
height: 100vh; /*THis will set height equal to the height of windows*/
width: 100vw/*This will set width equal to width of windows*/
}
vh and vw
/*vh viewport height and vw viewport width*/
/*example*/
div
{
display: inline-block;
height: 100vh; /*THis will set height equal to the height of windows*/
width: 100vw/*This will set width equal to width of windows*/
}
difference between rem and em css
Explanation: If you run these code you understand differences between rem vs em
In this example, font-size of first h1 is 48px (nearest parent) and font-size
of second h1 is 32px ( parent of page which is html)
<style>
html {
font-size: 32px;
}
.font {
font-size: 48px;
}
.em {
font-size: 1em;
}
.rem {
font-size: 1rem;
}
</style>
<body>
<div class="font">
<h1 class="em">Hey guys!</h1>
</div>
<div class="font">
<h1 class="rem">Hey guys!</h1>
</div>
</body>
vh and vw
/*vh viewport height and vw viewport width*/
/*example*/
div
{
display: inline-block;
height: 100vh; /*THis will set height equal to the height of windows*/
width: 100vw/*This will set width equal to width of windows*/
}
difference between rem and em css
Explanation: If you run these code you understand differences between rem vs em
In this example, font-size of first h1 is 48px (nearest parent) and font-size
of second h1 is 32px ( parent of page which is html)
<style>
html {
font-size: 32px;
}
.font {
font-size: 48px;
}
.em {
font-size: 1em;
}
.rem {
font-size: 1rem;
}
</style>
<body>
<div class="font">
<h1 class="em">Hey guys!</h1>
</div>
<div class="font">
<h1 class="rem">Hey guys!</h1>
</div>
</body>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us