The Yacht club has a web site that consists of a picture of the yacht club room along with the yacht club rules on the left. On the right side is a list of upcoming events, the company logo, and the yacht club teacher training dates. Sue, the web designer, needs some help with Cascading Style Sheets (CSS) to make sure the pages display correctly.

To make the webpage display the yacht club rules in a bulleted list, _____ should be used.

​display: list-item

​display: item-list

​display: list

​display: top-list

Respuesta :

Answer:

​display: list-item                      

Explanation:

Cascading Style Sheets adds different styles to the web pages and documents. These can be adding different fonts, bullets, colors etc.

In ​display: list-item

display changes the display style of an element.  

list-item is used to display the element or the content of the webpage such as here the yacht club rules in a bulleted list form. The element will be shown in this way  <li>

list-item can also be used along

list-style-type and list-style-position

For example:

If the content is this line: "this is my computer"

it will be displayed as:

  • this is my computer