Tagged Questions

3
votes
2answers
240 views

CSS Selector: Are parentheses allowed?

In the below example, I want to create a CSS rule that applies only to the header with the text "Blockhead". <div class="gumby"> <span class="pokey"></span> ...
3
votes
3answers
2k views

crop text too long inside div

<div style="display:inline-block;width:100px;"> very long text </div> any way to use pure css to cut the text that is too long rather than show on next new line and only show max 100px ...
1
vote
1answer
122 views

CSS border radius validation errors

I am using to check my CSS http://jigsaw.w3.org/css-validator but I get error for -webkit-border-radius, -moz-border-radius and border-radius. I know that this site test for v2.1 and all these ...
1
vote
1answer
91 views

CSS: Table to div, somekind

This is what i want... But how can i build this using CSS and DIV's? I tried many tutorials, but it didn't came further than this: body { font-family: Arial, Helvetica, sans-serif; ...
1
vote
3answers
125 views

Advanced CSS Selector - Select based on styling

Performance issues aside, is it possible to use a style as a selector? For example, something like: div[background-image="img/someimg.jpg"] {opacity:.5} My fallback plan is to use javascript and ...
1
vote
1answer
258 views

Using display:table-cell without containing display:table

I'm trying to create a semantically correct HTML 5 web page utilizing CSS 3. I've created the below markup which exists at the root of my body element. Applying display:table-cell to both the aside ...
1
vote
12answers
6k views

dynamically change color to lighter or darker by percentage CSS (javascript)

we have big application on the site and we have few links, which are lets say blue color like the blue links on this site. now i want to make some other links, but with lighter color, obviously i can ...
0
votes
1answer
56 views

Is there a different markup for CSS3?

I just a have simple question. I coded my HTML5 website and used some CSS3. Is there a different markup for CSS2 and CSS3? When I checked my HTML at the W3C, it validates 100%. But not my CSS, ...
0
votes
2answers
39 views

Cross browser css rules: Mozila,chrome,safari and css2 vs css3

I have two issues I have ignored so far, but I will really appreciate some light shed onto them. First: how can I solve differences between Safari, Chrome and Firefox and the various tags that their ...
0
votes
0answers
18 views

html5 audio/video element

Is anyone aware of another solution then jPlayer for the HTML audio/video custom design. The jPlayer works well if you have precise information, but if you do not know how many players are needed, it ...
0
votes
2answers
55 views

Internet explorer css problem [closed]

So I have a css problem with IE, I tested it on IE9, so here you go http://latest-mtv.net/randa/, you can see that drop-down menu with the romanian flag, click on it, it doesn't display the list ...
0
votes
1answer
191 views

A Few Questions About CSS3/@Import and Validation CSS2.1

This weekend I made a template for a ficticious website. I do this every so often to try and build a very cleanly coded website template with minimal markup and very consice css. I want my sites to ...
0
votes
5answers
151 views

Support for 3 background images in CSS?

I want to have 3 background images for a div. I know CSS2 and CSS3 can both handle 2 images, but can they handle 3? The background image is purely for cosmetic reasons so if it doesn't work in all ...
0
votes
1answer
72 views

Text Not Aligning Properly - font-size issue?

I'm trying to align text on top of an image in such a way that it remains aligned even if the underlying image is increased/decreased in size. I'm using px values that were taken from Photoshop ...
0
votes
1answer
2k views

CSS3 outline using CSS2 border

Sadly, CSS outline isn't supported in IE7, so i'm stuck using border. But adding a border to any element on the page takes up room and possibly shifts the page. If i'm adding a 2px border, then I set ...