Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
colspan
- the colspan attribute defines the number of columns a cell should span.
rowspan
- the rowspan attribute specifies the number of rows a cell should span.
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML5 and CSS3 beginners tutorials
1
multiple
attribute enables us to select several options at the same time.
size
attribute determines select tag height in options
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML5 and CSS3 beginners tutorials
1
Clicking on
radio
label or
checkbox
label makes the object checked, but clicking on
input[type=text]
label makes it active (gives it focus)
by Valeri Tandilashvili
5 years ago
0
HTML
tags
HTML5 and CSS3 beginners tutorials
1
Every computer that has a browser installed has default fonts built in so that it can display the text on web pages
by Valeri Tandilashvili
5 years ago
0
CSS
fonts
CSS Crash Course For Absolute Beginners
1
The text inside
p
element will be all uppercase and underlined
p {
    text-decoration: underline;
    text-transform: uppercase;
}
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Crash Course For Absolute Beginners
1
We can convert inline
label
element to block level element using the code below. So they will take the full width of the container
.my-form label {
    display: block;
}
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Crash Course For Absolute Beginners
1
top
The top property affects the vertical position of a positioned element. This property has no effect on non-positioned elements (If position is
static
)
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS
1
The element is positioned relative to the browser window
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Crash Course For Absolute Beginners
1
We can use
first-child
to select only the first child element:
.my-list li:first-child {
    background-color: red;
}
last-child
is used to select the last member from the list:
my-list li:last-child {
    background-color: blue;
}
nth-child(5)
is used to select
nth
element. In the example we select 5th element
.my-list li:nth-child(5) {
    background-color: yellow;
}
We can also use
nth-child(even)
to select even members from the list
.my-list li:nth-child(even) {
    background-color: grey;
}
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Crash Course For Absolute Beginners
1
Displays an element as an inline element (like
<span>
). Any height and width properties will have no effect
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Crash Course For Absolute Beginners
1
Results: 1580