Ask Question
6 September, 05:19

Create a style rule for the address element to display the text in a normal font with a font size of 0.9em, horizontally center the text, and set the top and bottom padding to 10 pixels.

+2
Answers (1)
  1. 6 September, 07:45
    0
    Following are code in CSS (Cascading Style Sheet).

    address {

    font-weight: normal;

    font-size:0.9em;

    text-align: center;

    padding-top: 10px;

    padding-bottom: 10px;

    }

    Explanation:

    Following are the description of the program.

    In the following code of Cascading Style Sheet, "address" is the element that is used to style.

    Firstly, set the weight of the text to normal. Then, set the size of the text to 0.9em. Then, Align the text at the center. Finally, Set the padding from top and bottom to 10px.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Create a style rule for the address element to display the text in a normal font with a font size of 0.9em, horizontally center the text, ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers