I'm making a website in Aptana and i'm using an empty div element for the styling of a border-bottom.
I couldn't make it part of the element it's a border of because it needs to have the same width all the time and that supposed parent element in fact changes size depending on the content.
Question being: Is it bad to use empty divs like this? Aptana gives me a warning. It says i "should trim empty div".
I'm talking about the divs down here with the class "showinfo-border-left/right"
<div class="showinfo">
<div class="showinfo-left">Text</div>
<div class="showinfo-right">More text</div>
</div>
<div class="showinfo-border-left"></div>
<div class="showinfo-border-right"></div>
From Best Practices for Speeding Up your Webpage
A complex page means more bytes to download and it also means slower DOM access in JavaScript. It makes a difference if you loop through 500 or 5000 DOM elements on the page when you want to add an event handler for example.
A high number of DOM elements can be a symptom that there's something that should be improved with the markup of the page without necessarily removing content. Are you using nested tables for layout purposes? Are you throwing in more <div>
s only to fix layout issues? Maybe there's a better and more semantically correct way to do your markup.
A great help with layouts are the YUI CSS utilities: grids.css can help you with the overall layout, fonts.css and reset.css can help you strip away the browser's defaults formatting. This is a chance to start fresh and think about your markup, for example use <div>
s only when it makes sense semantically, and not because it renders a new line.
The number of DOM elements is easy to test, just type in Firebug's console:
document.getElementsByTagName('*').length
And how many DOM elements are too many? Check other similar pages that have good markup. For example the Yahoo! Home Page is a pretty busy page and still under 700 elements (HTML tags).