Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
The style is used instead of deprecated
cellpadding
attribute of the table
th, td {
    border: 1px solid black;
    padding: 5px;
}
by Valeri Tandilashvili
4 years ago
0
CSS
1
These tags are used to style its content differently
by Valeri Tandilashvili
4 years ago
0
HTML
tags
HTML5 and CSS3 beginners tutorials
2
table#myTable {
  border-collapse:collapse;
}
As default, borders are separated (with value:
separate
), but when the property value is
collapse
, then borders are collapsed into a single border
by Valeri Tandilashvili
4 years ago
0
CSS
properties
HTML5 and CSS3 beginners tutorials
1
.container {
    box-sizing: border-box;
}
Another way to avoid border, padding PX calculations
by Valeri Tandilashvili
4 years ago
0
CSS
properties
HTML5 and CSS3 beginners tutorials
1
* {
    margin: 0px;
    padding: 0px;
}
by Valeri Tandilashvili
4 years ago
0
CSS
HTML5 and CSS3 beginners tutorials
1
.container {
    width:1000px;
    margin:0px auto;
}
by Valeri Tandilashvili
4 years ago
0
CSS
HTML5 and CSS3 beginners tutorials
1
<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
4 years ago
0
HTML
tags
HTML5 and CSS3 beginners tutorials
2
Note: There must not be more than one
<main>
element in a document. The
<main>
element must NOT be a descendant of an
<article>
,
<aside>
,
<footer>
,
<header>
, or
<nav>
element.
by Valeri Tandilashvili
4 years ago
0
HTML
tags
HTML
1
A
<footer>
element typically contains: authorship information copyright information contact information sitemap back to top links related documents
by Valeri Tandilashvili
4 years ago
0
HTML
tags
HTML
1
one or more heading elements (
<h1>
-
<h6>
), also logo or icon Note: You can have several
<header>
elements in one HTML document. However,
<header>
cannot be placed within a
<footer>
,
<address>
or another
<header>
element.
by Valeri Tandilashvili
4 years ago
0
HTML
tags
HTML
1
Results: 1578