-
The unit can not be used to measure the font size is
- em
- pt
- px
- %
-
To make every text line has equal width, and the left and right margins are straight, we need use
- text-align:middle
- text-align:justify
- text-align:center
- text-align:both
-
The CSS property to specify the foreground color of text is
- color
- background-color
- foreground-color
- text-color
-
The HTML tag "ins" can be replaced by
- text-decoration: line-through;
- text-decoration: underline;
- text-decoration: overline;
- text-decoration: none;
-
The HTML tag "del" can be replaced by
- text-decoration: line-through;
- text-decoration: underline;
- text-decoration: overline;
- text-decoration: none;
-
The CSS style which is used to set the indentation by 1em is
- text-indent: 1em;
- text-indention: 1em;
- indent: 1em;
- indention: 1em;
-
The CSS style which is used to specify additional spacing between the words is
- letter-spacing
- word-spacing
- letter-margin
- word-padding
-
The CSS style used to specify the font to be used to render the text is
- font-family
- font-style
- font-weight
- font-size
-
To make the text bold, we need use
- font-weight:bold
- font-weight:bolder
- font-weight:boldest
- font-weight:boldest
-
To make first letter of each word be in uppercase, we need use
- text-transform:uppercase
- text-transform:lowercase
- text-transform:capitalize
- text-transform:none
-
To replace the <i> tag, we may use
- font-style:italic
- font-style:oblique
- font-style:italic-oblique
- font-style:none
-
To replace the <b> tag, we may use
- font-style:bold
- font-style:oblique
- font-style:italic-oblique
- font-style:italic
-
About using font family, which statement is the correct one?
- font-family: "Times New Roman", serif;
- font-family: Times New Roman;
- font-family: serif, "Times New Roman";
- font-family: serif, Times New Roman
-
To achieve the same visual effect of the HTML tag <strong>, we may use the CSS property
- font-weight: bold
- font-style: bold
- font-weight: strong
- font-style: strong
-
To remove the underline of hyperlink, we may use the CSS style
- text-decoration: remove
- text-decoration: none
- text-decoration: invisible
- text-decoration: hidden
-
To change the space between the letters of a word, we may use the CSS style
- word-spacing
- letter-spacing
- margin
- padding
-
To change the space between lines of a paragraph, we may use the CSS style
- word-spacing
- letter-spacing
- line-height
- margin
- When text-align is set to center, each line is stretched so that every line has equal width (except the last
line), and the left and right margins are straight.
- The text-indention property is used to set or remove decorations from text.
- The word-spacing property is used to set extra spacing between the characters of text.
- The text-decoration property is extensively used to remove the default underline from the HTML hyperlinks.
- If the name of a font family contains more than one word, it must be placed inside quotation marks.
- In CSS style "font-family: font1,font2....serif", font1 has the highest priority.