Ask Question
13 April, 03:57

One of the ways to create a horizontal navigation menu from an unordered list is to a. set the display property of the element within each li element to inline b. set the float property of the elelment within each li element to left c. set the clear property of each li element to both d. set the display property of each li element to inline

+5
Answers (1)
  1. 13 April, 06:49
    0
    Answer: a. set the display property of the element within each li element to inline

    Explanation: In an unordered list, ul signifies the list and li signifies the elements in the list. When you want to display the elements in a list in a horizontal form, for example if you need a horizontal menu, a quick way of doing this is setting the display of li to inline by writing it as follows in css:

    li {

    Display: inline;

    }

    This will order the elements in the list into the form of a horizontal menu.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “One of the ways to create a horizontal navigation menu from an unordered list is to a. set the display property of the element within each ...” 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