Search Results

1
vote

DIV’s vs. Tables or CSS vs. Being Stupid

A List Apart is a great reference for using semantic HTML, the Holy Gr …
1
vote

Alternative Style(CSS) methods in SAP Portal?

I'd consider it dirty hack, but as a non-Portal developer I'd consider using JavaScript to insert a new link element in the head pointing to your new CSS file. Of course you'd have a flash of un- …
0
votes

How can I fix an issue in IE where borders don’t show up when the mouse isn’t hovered over an image.

IE has problems with the :hover pseudo-class on anything other than anchor elements so you need to change the element the hover is affecting to the anchor itself. So, if you added a class like "im …
0
votes

How do I make an HTML table the same width as its containing div tag?

Percentage-based widths are relative to the first parent element that has a width specified. If your div does not have a width specified then the width of the table has nothing to do with it. C …
0
votes

What is the best method to reduce the size of my Javascript and CSS files?

Google hosts a handful of pre-compressed JavaScript library files that you can include in your own site. Not only does Google pro …