CSS (Cascading Style Sheets) is a language used to control the visual presentation of HTML and XML documents including (but not limited to) colors, layout and fonts.

learn more… | top users | synonyms (9)

3
votes
1answer
88 views
+50

background-attachment: fixed interfering with background-size

I've got a background image scaled to fit inside its container, and I have appropriate fallbacks (not shown) for when Modernizr detects that the browser does not support background-size. .wrap { ...
3
votes
1answer
83 views
+500

Android WebKit focused textarea won't draw background image

Android WebKit draws a white background + border on a textareas and inputs when they have focus. How do I stop it from doing that? I've tried changing -webkit-tap-highlight-color, ...
-1
votes
3answers
47 views
+50

HyperSpace from codepen doesn't work for me when I copy it

HyperSpace is neat demo that (I think) only uses css. But when I copy the html and css to my directory, it doesn't work. Q: What am I missing?
5
votes
4answers
202 views
+50

How to get a div to stretch right down to a fixed footer

I wish the two sections of my design (see attached image) to extend the whole height of the page. I have tried to create a Fiddle but it just won't work in there, so I've put up a link here to demo ...
1
vote
1answer
98 views
+100

Why does using `-webkit-appearance: none` on a select option in OSX make the text disappear?

In order to get the styling I want on Chrome in OS X, I have to use the -webkit-appearance: none; attribute. See this question and this answer. The issue is, now when I select an answer, it doesn't ...
32
votes
16answers
59k views
+50

Safari/Chrome (Webkit) - Cannot hide iframe vertical scrollbar

I have an iframe on www.example.com that points to support.example.com (which is a CNAME to a foreign domain). I automatically resize the height of my iframe so that the frame will not need any ...
1
vote
2answers
78 views
+50

Border expanding table but cutting off background image

I have created a fiddle of my problem in a fiddle here: http://jsfiddle.net/tpSjf/ I'm adding a border on the table, but only for the rows, now the border expands the width of the table by 2px so ...
3
votes
1answer
82 views
+50

Css -webkit-backface-visibility shows white dots on rotated div

I have a DIV and it is rotated by: transform: rotate(-5deg); -ms-transform: rotate(-5deg); -webkit-transform: rotate(-5deg); It's good there, but when I add -webkit-backface-visibility: hidden; ...
1
vote
1answer
97 views
+100

media queries GLITCH in IE

I am using media queries to justify a list of boxes. Basically, I set up a media query for each #columns states, where I then use calc() to work out the margin-right on each of the elements (except ...
0
votes
5answers
74 views
+50

Wrapping div is not resized when inner image scales (a result of window resize)

I want my images to resize as the window height changes while keeping the containing div shrink wrapping the image. I tried using: <div> <img ...
4
votes
0answers
256 views
+50

SVG as CSS background, problems with zoom level in Opera

I'm having difficulties using SVG background with Opera. When I zoom out the page, the background starts repeating on the x axis despite `background-repeat: repeat-y' I created a codepen showing off ...
0
votes
1answer
65 views
+50

Are there templates for user messages utilizing twitter bootstrap?

I would like to use twitter bootstrap for my web site. It looks great but now I need to add messages of users (like those on forums or twitter). In other words it should display short text, submission ...