ATTRIBUTE OF UL TAG IN HTML
Answers
Answer:
The UL element defines an unordered list. The element contains one or more LI elements that define the actual items of the list.
Unlike with an ordered list (OL), the items of an unordered list have no sequence. In theory, users could be able to change the order of items in an unordered list (e.g., alphabet sizing them).
Visual browsers typically render UL with a bullet preceding each list item, but authors can suggest various presentations using style sheets. The list-style property of Cascading Style Sheets allows authors to suppress bullets, use images as list item markers, and more.
The deprecated TYPE attribute of UL suggests the bullet style on visual browsers. Possible values are as follows:
disc (a filled-in circle)
square (a square outline)
circle (a circle outline)
The bullet style on an individual list item can be suggested using the TYPE attribute of LI. The list-style-type property of CSS provides greater flexibility in suggesting bullet styles.
The deprecated COMPACT attribute suggests that visual browsers render the list compactly, perhaps with reduced spacing between items. This attribute is not well supported among browsers.
Explanation:
I hope it helps !
Kindly mark me as theh brainliest. Will very much appreciate:-D
Answer:
Attribute = compact
Value = compact
Discription = Specifies that the list should be rendered in a compact style. Not supported in HTML 5.