DISPLAY Property In CSS
display Property in CSS
display property Declares if/how the element displays
Possible Value:
none inline block list-item run-in compact marker table inline-table table-row-group table-header-group table-footer-group table-row table-column-group table-column table-cell table-caption
Examplediv { display:none; }
div { display:inline; }
div { display:marker; }