×
Clear all filters including search bar
Valeri Tandilashvili's Personal Professional Blog
On which day we change which files
Git will even show us which lines of code we added and which lines of code we removed
em
because if we have 3 containers nested inside of each other with 2em
, then the child element will have 8 times more font-size than it's grand parent container (it means they cascade) https://www.w3schools.com/cssref/tryit.asp?filename=trycss_unit_em
https://youtu.be/-GR52czEd-0?t=279h1 {
height: 500px;
height: 100vh;
}
<a href="javascript:get_next_10();">some link</a>
SELECT CONVERT(varchar, getdate(), 23)
MSSQL:SELECT DATE_FORMAT(curdate(), "%Y-%m-%d");
h1 { font-family: Arial, Helvetica, sans-serif; }
The font-family
property should hold several font names as a "fallback" system, to ensure maximum compatibility between browsers/operating systems.
If the browser does not support the first font, it tries the next font.
Start with the font you want, and end with a generic family, to let the browser pick a similar font in the generic family, if no other fonts are available<header>
and <footer>
elements can be used in <article>
. Example:
<article>
<header>
<h2>some header</h2>
</header>
<p> some paragraph</p>
<p> some other paragraph</p>
<footer>
written by Quentin Watt
</footer>
</article>