Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Relative to the font-size of the parent element (2em means 2 times the size of the parent font-size). We should be careful when we use
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=279
by Valeri Tandilashvili
4 years ago
0
CSS
measurement units
CSS Units
2
Error: Attribute alt not allowed on element input at this point
by Valeri Tandilashvili
5 years ago
0
HTML
Error
2
Git can tell us:
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
by Valeri Tandilashvili
4 years ago
0
Git
Git Tutorial - Learn Command-line Git & GitHub
2
1. include .css file with media attribute:
<link rel="stylesheet" href="responsive.css" media="screen and (max-width: 900px)">
2. @media query without
<link>
@media screen and (max-width: 900px) {
    /* conditional CSS */
}
by Valeri Tandilashvili
4 years ago
0
CSS
responsive design
Learn CSS
2
Warning: The type attribute for the style element is not needed and should be omitted
<style type="text/css">
by Valeri Tandilashvili
5 years ago
0
HTML
Warning
2
git alias
Creates alias
adog
globally
git config --global alias.adog "log --all --decorate --oneline --graph"
Which can lately be run using the follwing command
git adog
After the command execution, In global
config
file will be added the following
[alias]
	adog = log --all --decorate --oneline --graph
by Valeri Tandilashvili
4 years ago
0
Git
2
If we made changes in a file, that already was in staging area, the latest changes will not be considered if we commit the file, without adding the file in staging again
by Valeri Tandilashvili
4 years ago
0
Git
2
<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>
by Valeri Tandilashvili
5 years ago
0
HTML
tags
HTML5 and CSS3 beginners tutorials
2
.container {
  display: flex;
  flex-direction: row-reverse;
}
The direction of the flexible items inside the .container is set in reverse order.
by Valeri Tandilashvili
4 years ago
0
CSS
properties
CSS Flexbox Tutorial
2
These tags are used to style its content differently
by Valeri Tandilashvili
5 years ago
0
HTML
tags
HTML5 and CSS3 beginners tutorials
2
Results: 1580