You can use a Design-time style sheet to display the backgrounds, borders, or box model for elements that arent normally considered CSS layout blocks. To do so, you must first create a Design-time style sheet that assigns the display:block
attribute to the appropriate page element.
display:block
attribute to the page elements you want to display as CSS layout blocks.
For example, if you wanted to display a background color for paragraphs and list items, you could create a style sheet with the following rules:
p{ display:block; } li{ display:block; }
The style sheet is attached to your document. If you had created a style sheet using the previous example, all paragraphs and list items would be formatted with the display:block
attribute, thereby allowing you to enable or disable CSS layout block visual aids for paragraphs and list items.