1/30
A collection of flashcards designed to reinforce key concepts related to HTML and CSS for exam preparation.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
In CSS, which property is used to create a border for a table?
Border
What property is used to adjust the height of rows in a table?
Height
To create a hover effect for rows in a table, which selector is used?
Tr:hover
To center a table on a web page, which property can be used?
Margin: auto
Which value is used to create a dotted border for a table?
Border-style: dotted
Which property is used to determine the width of a column in a table?
Width
What does the vertical-align property apply to in table cells?
Aligns content vertically
Which property is used to create a shadow effect for a div?
Box-shadow
Which property does NOT relate to font formatting in a div?
Font-width
Which property is used to rotate a div?
Transform: rotate()
To add a background color to an element in CSS, which property is used?
Background-color
Which HTML tag is used to create the largest heading?
What tag is used to insert an image into a web page?
Which tag is used to create a new row in an HTML table?
In HTML, which tag is used to create a table?
Which property is used to merge columns in a table?
Colspan
Creates a data cell in a table
Creates a border for the whole table
To merge rows in a table, which property is used?
Rowspan
Which tag is used to group header elements in a table?
Which tag groups footer elements in a table?
What property specifies alternative text for images?
Alt
Which property defines the displayed size of a textarea?
Size
To create a form in HTML, which tag is used?
In CSS, what does margin: 10px 20px 30px 40px; represent?
Top: 10px, right: 20px, bottom: 30px, left: 40px
In HTML, which property specifies the image URL?
Src
What is the correct syntax to select all elements with class="test" in CSS?
.test
For a hyperlink to the h2 element with ID "dautrang", which is the correct syntax?
To format text 'contact information' in blue color, which HTML is correct?
contact information
The internal CSS rules are declared within which tag?