HTML | DOM ul compact Property
The HTML DOM ul compact property is used to set or return the value of a compact attribute of the <ul> tag. The compact attribute is used to define the list should be smaller than the normal by reducing the space between the list items and the indentation of the list. It is a Boolean attribute.
Syntax:
- It returns a ul compact Property.
ulObject.type
- It is used to set the ul compact property.
ulObject.compact = "True/false";
Property Values:
- true: It defines that the compact attribute is set .
- false: It defines that the compact attribute is not set.
Return Values: It returns a string value which represents the compact attribute is set to true or false.
Example 1:
<!DOCTYPE html> < html > < head > < title >DOM ul compact Property</ title > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >DOM ul compact Property </ h2 > < ul id = "Geeks" type = "circle" compact> <!-- Assigning id to 'li tag' --> < li id = "GFG" >Geeks</ li > < li >Sudo</ li > < li >Gfg</ li > < li >Gate</ li > < li >Placement</ li > </ ul > < button onclick = "myGeeks()" >Submit</ button > < p id = "sudo" ></ p > < script > function myGeeks() { // Accessing 'ul' tag. var g = document.getElementById( "Geeks").compact; document.getElementById( "sudo").innerHTML = g; } </ script > </ body > </ html > |
chevron_right
filter_none
Output:
- Before Clicking On Button:
- After Clicking On Button:
Example 2:
<!DOCTYPE html> < html > < head > < title >DOM ul compact Property</ title > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >DOM ul compact Property </ h2 > < ul id = "Geeks" type = "circle" compact> <!-- Assigning id to 'li tag' --> < li id = "GFG" >Geeks</ li > < li >Sudo</ li > < li >Gfg</ li > < li >Gate</ li > < li >Placement</ li > </ ul > < button onclick = "myGeeks()" >Submit</ button > < p id = "sudo" ></ p > < script > function myGeeks() { // Accessing 'ul' tag. var g = document.getElementById( "Geeks").compact = "false"; document.getElementById( "sudo").innerHTML = g; } </ script > </ body > </ html > |
chevron_right
filter_none
Output:
- Before Clicking On Button:
- After Clicking On Button: