Visibility values | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

Visibility values

visibility property values

11th Mar 2017, 3:27 PM
Abhijit Mhasagar
Abhijit Mhasagar - avatar
2 Answers
+ 9
None - will show nothing and will also remove the element from its natural flow. Hidden - will hide the element displayed, but will not remove it from it's natural flow. Let's say you have an element and you use none, everything around it may start to look odd or should one say collapse - most likely not the look you were after. If it was hidden, the element will disappear but everything will stay in place.
12th Mar 2017, 2:55 PM
Mark Foxx
Mark Foxx - avatar
+ 1
visible- Default value. The element is visible hidden- The element is hide (but still takes up space) collapse- Only for table rows (<tr>), row groups (<tbody>), columns (<col>), column groups (<colgroup>). This value removes a row or column, but it does not affect the table layout. The space taken up by the row or column will be available for other content. If collapse is used on other elements, it renders as "hidden" initial- Sets this property to its default value. Read about initial inherit- Inherits this property from its parent element. Read about inherit
26th Jul 2020, 7:42 AM
hodaya mazluminyan
hodaya mazluminyan - avatar