0
votes
IE sends inner HTML when clicking on a button element
I don't know any way of making it work in IE7 (or IE6) without the need for JavaScript (or strange multi-form constructions).
Isn't that localized accessible to the back-end somehow either? …
2
votes
Hide something with CSS without display:none or JavaScript
What makes you think display: none is not supported before version 4.6? Did you test that, or are you going by their documentation?
I'm not a mobile developer either, so I'm ju …
2
votes
Any way to synchronize table column widths with HTML + CSS?
If you're not too picky about which column widths the browser comes up with, as long as they're the same across different tables, you can use the CSS …
1
vote
How can I fix a table row height in a 100% height table with a DOCTYPE specified using CSS?
There's an easy way to fix this, especially if the page just contains this table, and you just want it to work. I'm not sure if ASP.NET will let you though: Add a comment in front of the doctype. E …
2
votes
CSS spacing issues with Safari?
You seem to have made some adjustments already, based on the state of that site you linked to, but it's still not working properly across different browsers.
I think your best bet is to set …
12
votes
How to create special links in search results?
They're called Sitelinks. This is what Google itself says about them: How does Google compile the list o …
2
votes
Internet explorer and floats: please explain
The floats are being bumped to the next line because of the width: 270px on the rows. That happens in IE6/7 because of its …
1
vote
How to make a div 100% of page (not screen) height?
If you change position: absolute to position: fixed it will work in all browsers except IE6. This fixes the div to the viewport, so it doesn't move out of view when scroll …
0
votes
Overflowing HTML line text before it gets obscured by right aligned content
The easiest way to be able to let those icons affect the width of the text is to have them precede it (they're absolutely positioned anyway), and to give text itself a container as well (I'm pretty …
1
vote
How to get usage(progress) bar to display properly in IE
What are $s, $v and $g doing in your HTML; and the <br>, for that matter?
If I remove the <br>, and replace those $ values by actual percentages that a …
4
votes
Blank HTML form action (posting back to self)
HTML5 explicitly mentions as part of its form submission algorithm that …
3
votes
Whitespace at bottom of page in IE7 and Chrome only
The reason you're getting the whitespace is because you're using relative positioning for the logos in your footer. Use absolute positioning instead.
…
2
votes
Absolute Block Behaviour
In Block 2, the absolutely positioned div doesn't strictly inherit its width from its parent. If that were the case, setting its width to auto would do the trick. Instead, its …
5
votes
using text-align center in colgroup
Only a limited set of CSS properties applies to columns, and text-align isn't one of them.
See …
0
votes
overflow:hidden not working for li elements inside ul
Add position: relative to the .ui-carousel in your second approach. Absolutely positioned elements are taken out of the flow. If you don't relatively position the ul …
