Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
property
float
with divs
by Valeri Tandilashvili
4 years ago
0
CSS
properties
HTML5 and CSS3 beginners tutorials
1
floating picture with paragraphs
.pic { float: left;  }
.par2 { clear: left; }
by Valeri Tandilashvili
4 years ago
0
CSS
properties
HTML5 and CSS3 beginners tutorials
1
.rounded_box {
    background-color: orange;
    width: 200px;
    border-radius: 50px;
    background-image: linear-gradient(to top /*to bottom*/, #04507b, #00a2ff);
    background-image: linear-gradient(to top, #04507b, #0072b4, #018ad9, #00a2ff);
    background-image: linear-gradient(to top, #04507b 40%, #0072b4, #018ad9, #00a2ff);
}
by Valeri Tandilashvili
4 years ago
0
CSS
functions
HTML5 and CSS3 beginners tutorials
1
.rounded_box {
    background-color: orange;
    width: 200px;
    border-radius: 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 40px;
    -moz-border-bottom-left-radius: 40px;   /* for older version of firefox */
    -webkit-border-bottom-left-radius: 40px;   /* for older version of chrome */
}
by Valeri Tandilashvili
4 years ago
0
CSS
attribute styles
HTML5 and CSS3 beginners tutorials
1
ul {
    list-style-type: disc;   /* circle, square, decimal, lower-greek, katakana,.. none  */
    list-style-image: url(some_image.png);
    line-height: 200%;
    list-style-position: inside;   /* outside */
}
by Valeri Tandilashvili
4 years ago
0
CSS
attribute styles
HTML5 and CSS3 beginners tutorials
1
a { color: green; text-decoration: none; }
a:hover { color: red; text-decoration: underline; }
a:active{ color: orange; }
a:visited{ color: pink; text-decoration: none; }
by Valeri Tandilashvili
4 years ago
0
CSS
pseudo-classes
HTML5 and CSS3 beginners tutorials
1
We can print some text before every paragraph as well as after every paragraph
p:before { 
    color: red; 
    content: "read this carefully"; 
}
p:after { 
    color: red; 
    content: "you have read it! good job"; 
}
by Valeri Tandilashvili
4 years ago
0
CSS
pseudo-elements
HTML5 and CSS3 beginners tutorials
1
Error: The element "button" must not appear as a descendant of the "a" element
by Valeri Tandilashvili
4 years ago
0
HTML
Error
1
Error: Quote " in attribute name. Probable cause: Matching quote missing somewhere earlier
by Valeri Tandilashvili
4 years ago
0
HTML
Error
1
Error: The align attribute on the td element is obsolete
by Valeri Tandilashvili
4 years ago
0
HTML
Error
1
Results: 1578