Tagged Questions
The css-hack tag has no wiki summary.
30
votes
15answers
3k views
What is better: CSS hacks or browser detection?
Commonly when I look around the Internet, I find that people are generally using CSS hacks to make their website look the same in all browsers. Personally, I have found this to be quite time consuming ...
11
votes
4answers
202 views
What is this CSS rule?
In the son of suckerfish drop down menu:
http://www.htmldog.com/articles/suckerfish/dropdowns/example/
You see this rule
w\idth: 13.9em;
This can't be a typo as it appears various times in the ...
10
votes
8answers
19k views
Are there any IE9 CSS hacks?
Are there any IE9 CSS hacks? I tried to find some but haven't been successful.
5
votes
4answers
117 views
What actually is clearfix?
Recently I was looking through some website code, and saw every <div> had a class clearfix.
After a quick google, I learnt that is is for IE6 sometimes, but what *actually is clearfix and ...
5
votes
4answers
141 views
What does this CSS do?
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
This is from the YUI reset css. What does the * before font-size:100% do?
...
5
votes
12answers
1k views
Acceptable CSS hacks/fixes
Is there a list of 'good' clean CSS hacks, which are certain to be future-proof?
For example, zoom:1 is safe, as long as it's only served to IE, and you remember it's there. The very common hack of ...
4
votes
1answer
409 views
forward slash in CSS? Is this some browser specific thing?
I inherited a CSS stylesheet and in a few places it does things like:
margin:7px 0 0 0;
/margin-top:9px;
or
background: url(../images/list-hover.png) 0 0 no-repeat;
...
4
votes
3answers
512 views
finding if the current working browser is safari via css or javascript
I researched on identifying, if the browser is Safari or not.
In javascript : window.devicePixelRatio object gives '1' for both chrome and safari
In CSS :
@media screen and ...
4
votes
3answers
2k views
CSS method to include IE6 hacks
CSS has @import, right?
IE6 understands *html selector hack, right?
Is it possible to combine them like
//*html @import url(ie6hacks.css);
or, possibly,
//*html { @import url(ie6hacks.css); }
...
3
votes
3answers
137 views
Conditional Comments within CSS
I am currently developing a theme for a homepage but ran into a few problems. For whatever reason I have no access to editing the html code itself, and I need to write custom .css for IE (specifically ...
3
votes
2answers
252 views
css absolute position inside relative position not overlapping
Hi I've been having problems trying to get my website to be crossbrowser..
in IE6 I have a container with relative positioning, and inside there is a absolute div, which has negative top and left, but ...
3
votes
1answer
97 views
What happens if I repeat a CSS style in IE?
In jquery-ui-1.8.6.custom.css, I found this gem:
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
display: none; /*sorry for IE5*/
display/**/: block; /*sorry for ...
3
votes
2answers
122 views
Comment conditionals or IE vendor specific hacks
So in my interweb travels of evaluating other programmer's CSS I've noticed a bunch of people using the underscore or asterisk hack that is vendor specific to IE browsers for debugging purposes though ...
3
votes
6answers
1k views
problem with the table width in IE?
I am using table to display a set of data, my HTML code goes here...
<table border="1" cellspacing="0" cellpadding="0" style="width: 780px;">
<tbody>
<tr>
<td ...
3
votes
1answer
639 views
noscript tag appears even if javascript is turned on in IE8
ghost noscript tag more info here
I am facing exactly this issue, how shall I handle this for Internet Explorer browsers :-( ?
Explanation:
I have included the following noscript tag in my ...
3
votes
1answer
3k views
css - set max-width for select
I have a form with a drop down list of venues and a submit button.
They are supposed to be on the same line, but since the list of venues is dynamic, it could become too long and push the button down.
...
3
votes
2answers
2k views
Future proof CSS hack for LTE Opera 10
I’m currently using
@media screen and (-webkit-min-device-pixel-ratio:0) {
example {}
html:first-child example {}
}
to target Safari + Opera 9.2
Is there a safe way to target opera gte ...
3
votes
6answers
455 views
Which css hacks for IE 6 and 7 are future proof?
Which css hacks for IE 6 and 7 are future proof? i mean if i use then then they would never create any problem and their patch will never be implemented?
manage 2 css one for all and one for IE is ...
3
votes
2answers
364 views
using #IEroot for ie-targeted styling?
Has anyone been able to succesfully use the IE CSS hack #IEroot? I stumbled upon it from this article but it doesn't seem to work for me.
I'm trying to fix/hack the inline styling bug to produce li ...
2
votes
2answers
54 views
Resharper: How to suppress inspection errors resulting from CSS hacks?
The code in question is this:
/*fix ie transform offset*/
.adAffiliate.adDeclarationPosition-Right .adAffiliate-header
{
*left: -20px !important; /* IE 7 (IE6 also uses this, so put it first) ...
2
votes
2answers
945 views
IE 9 css issues or css-hacks
* Updated *
Great discussion everyone, again thanks for the input I just want to share the information with other developers/programmers and talk about the possible solutions.
I've come up with ...
2
votes
1answer
434 views
CSS hack for multiple background images
I'm using...
background:url(menu-bg.png) repeat-x, url(spot.gif) repeat;
background:url(spot.gif)\0/;
To create multiple background images in Chrome, Safari and Firefox. The last directive (using ...
2
votes
3answers
4k views
Rendering a hierarchy of “OPTION”s in a “SELECT” tag
My problem is HTML and CSS related. I have a hierarchy type structure that I want to display inside a list. The hierarchy contains Countries, States and Cities (it is three levels deep).
I want to ...
1
vote
3answers
55 views
inline hack css lower to IE9 ? (or all non CSS3 capable browsers)
I need a hack to tarjet internet explorer lower to 9, or to be more specific; i need a inline CSS hack to tarjet non CSS3 capable browsers
_prop:val -> ie6
*prop:val -> ie6 & ie7
????????? ...
1
vote
1answer
237 views
Webkit CSS-hack deprecated?
I'm using the @media screen (-webkit-min-device-pixel-ratio:0) hack to specifically address Webkit browsers.
But it doesn't seem to work, does anybody know if this hack is deprecated?
Is there other ...
1
vote
2answers
54 views
CSS not affecting that is written for IE browser only
Why I am not able to apply an css that is for IE browser only,
I am trying to do it as below with in-page css block.
<style type="text/css">
<!--[if IE]>
body a ...
1
vote
2answers
140 views
Ie css hack star
What are the different ways of writing css hacks for ie?
I have seen html >, *..
but it is all very confusing..
Are there hacks to target specific ie versions like ie7, ie8 ?
1
vote
0answers
61 views
Css curved corners - ie7+ [closed]
Possible Duplicate:
Rounded corners in MS IE 7
I think I know the main idea of how to accomplish rounded corners w/o javascript. But generally the problem wasn't so difficult, since my ...
1
vote
2answers
2k views
Target IE9 or IE8 but not both using CSS
I know it shouldn't be done, but I just want a quick fix for now and that will give me time to find a proper fix for this.
How can I target IE8 alone using css because I've tried using '\9' such as:
...
1
vote
2answers
934 views
Is there any way to detect only Android browsers with CSS?
Is there any CSS hack to detect only Android browsers to write CSS? Not all WebKit browsers — I want to write different CSS for some elements on iPhone and Android browsers.
For example ...
1
vote
1answer
363 views
Difference between CSS sticky footer implementations?
I've found 2 different implementations of a CSS sticky footer:
Ryan Fait sticky footer - http://ryanfait.com/sticky-footer/
Steve Hatcher sticky footer - http://www.cssstickyfooter.com/
Could ...
1
vote
3answers
646 views
How to target only webkit-based browsers in a print stylesheet?
I'm facing some layout issues with a print stylesheet in webkit-based browsers, and I was wondering if there was a CSS selector, or another way to do a CSS hack to only target webkit / media print?
...
1
vote
2answers
107 views
CSS trick in place of javascript… almost working
<html>
<style type="text/css">
h3{
display: block !important;
}
h3:active{
display: block !important;
}
h3 span:before{
content: "[-]";
...
1
vote
1answer
104 views
How do I hide CSS from Opera 10.0 and earlier?
Opera 10.0 has some bugs related to SVG background images. These are fixed in 10.5.
I’d like to use SVG background images for gradients in Opera, but hide the code from those poor souls still on ...
1
vote
1answer
500 views
CSS for Disabled Textbox (Prevent “graying out” in Firefox/Chrome)
Is it possible to set CSS for disabled textboxes? I don't want the automatic gray-out in Firefox/Chrome.
The reason is that I'm sometimes disabling textboxes right before submitting a form so they ...
1
vote
1answer
413 views
IE7 - absolute positioning offset different to Firefox?
I'm tidying up another developer's work who seems to have done a shoddy job with the CSS.
There is the main "wrapper" div on the page, and inside this is a logo and images for the navigation. The ...
1
vote
1answer
2k views
Positioning Bug <IE8 - Why? Best workaround?
I noticed that a site I'm maintaining had a little layout bug in FF/IE8/Chrome (on this page for example) - the image in the top left hand was a little high, straying into the header at the top.
I ...
0
votes
1answer
33 views
css hacks and rewriting them
I've stopped using CSS hacks for different browsers and instead favour the "conditional comments adding classes to html tag" approach.
Which brings me to my question. How would I write this ie8 hack ...
0
votes
2answers
68 views
What browser & version is this hack for?
min-width: 160px;
max-width: 220px;
_width: 160px;
I know it's some version of IE, 6, 7 or 8. But can't figure out which one...
0
votes
1answer
85 views
is there a pure css way of targeting firefox 3.6 and below?
Seems that most of the questions on SO are looking to separate 3.6 from 3.5, but I want to separate 3.6 from 4.0+ without access to JS or server-side mechanisms.
Thanks.
0
votes
2answers
35 views
jQuery Delay for non-effects?
Stick with me, I'm dealing with pre-existing code and trying to not have to overhaul code.
I'm dealing with a rollover popup menu that needs a 500ms delay for the popup. Done in crazy CSS hacking as ...
0
votes
1answer
30 views
IE7 changes my navigation position, after the anchor is clicked
I have navigation which is positioned absolutely to it's relative parent. I've used hacks to position it correctly in IE7 and IE8. It's ok, more or less in comparison to what I have used (CSS3) for ...
0
votes
1answer
154 views
Are There Specific CSS Selectors Targeting IE10?
Since IE is getting rid of conditional comments in version 10, I'm in dire need to find a "CSS hack" targeting IE10 specifically. NB! It has to be the selector that's getting "hacked" and not the ...
0
votes
1answer
94 views
How can I fix the way my site shows up on screens of different sizes and resolutions?
You can see my site at http://www.taramenconi.byethost11.com/ . I designed it for 1024 x 768. I've also notices that on some screens, it just looks widely stretched... I purposely created the ...
0
votes
2answers
76 views
custom tags not working in ie8
I tried making custom tags so that uses can enter text that displays something with red or bold etc when rendered as HTML for eg,
<rb>text here becomes red and bold</rb> and goes to ...
0
votes
2answers
88 views
Target Chrome and safari, but not Safari on iphone or ipads?
Is there anyway (with CSS only) to target chrome and safari, but not safari on the iphone or ipads?
0
votes
1answer
92 views
IE7 CSS Broken to a Mystifying Degree
I had this page working in IE7, but then I made some changes (small additions that I want to keep), and the whole thing went up in flames.
There are two big issues. The main one relates to the ...
0
votes
0answers
316 views
ie8 quirks No Doctype css hack asp.net
We are not using any DocType Derivative in any of our large web application. Now I want to apply class for select, only for IE8 and IE6 should Ignore it. Is any one aware of hack which works with out ...
0
votes
1answer
409 views
Firefox2 display: inline-block hack with position: relative not working
Can anyone tell me if it's possible to make this work in Firefox2 (and also IE6)?
http://collinatorstudios.com/ff2_test.html
I was able to emulate inline-block with the '-moz-inline-stack' hack, ...
0
votes
2answers
103 views
Are modern website really need Css for Webkit based browser like chrome and some other
When i see some website's mockup that i found that they not used webkit hacks even use Mozilla hacks in css.
what is the reason for not using webkit hacks even they put hacks for css inside Firefox.
...