The third and last edition of the Cascading Style Sheets styling language (often shortened to CSS3) brings together powerful visual capabilities and versatile design manipulation techniques.
0
votes
0answers
9 views
border bottom not working print preview firefox css
I have a table in my webpage. When i view the page in print preview in firefox the border bottom of the td doesn't display sometimes. In other browsers it's working fine. How to fix this?
Html:
...
-1
votes
0answers
25 views
How to create different shape of trapezoid images using css?
I am working on a website where I need to use different trapezoid shape of images. Here I am giving you that image in rapidshare link:
http://rapidshare.com/files/3321655398/trapezoid.JPG
I have ...
0
votes
0answers
7 views
Stuck with the sticky-footer absolute positioned
Here is the tutorial I'm following. But my content is absolute positioned, which is causing a conflict, and the footer is not going down at the very bottom of the page. So how can I solve this? How ...
-5
votes
1answer
29 views
Create a field to accept tags HTML/JS [on hold]
I wanna create something like this in my website.Help me out please.!image
1
vote
2answers
18 views
Concatenate a number and “%” in sass
I would like to do the following using sass
width: #{$percent}%;
Where $percent is a variable containing a number. If $percent is equal to 50, the precompiled css would be:
width: 50%;
What ...
0
votes
1answer
11 views
How to use css media queries inline tag?
i have element, and this element have style, the style is auto generate from jQuery Plugin, can i do media queries inline tag?
My Code :
<div style="height: 630px;">
Can i do this?
<div ...
0
votes
1answer
14 views
CSS: How to use calc(100% - 20px) to get an area to fill up all area OTHER than that of a fixed-width element?
Apologies for the convoluted title. Here's my fiddle:
http://jsfiddle.net/PTSkR/152/
If you drag the result pane out to be wider, you can see the blue areas jump up. They're supposed to always be ...
0
votes
0answers
6 views
Why does the global viewport setting not pass Resharper's muster?
Based on p. 457 in "CSS3 - The Missing Manual" by David Finn McFarland, "...you can skip adding the tag to each HTML file in your site, and just add one @viewport rule to your main style sheet, like ...
0
votes
0answers
11 views
Can you specify tabular lining figures for webfonts?
Since it's possible to specify lining and oldstyle figures I'm hoping there's browser support for tabular numerals with webfonts?
Left: default numerals
Right: desired tabular numerals (notice ...
0
votes
1answer
11 views
CSS3 inset box-shadow not working on border
The shadow on the parent div doesn't affect the borders of the li elements within it. Does anyone know how to solve that issue?
Here's some code: http://jsfiddle.net/ukhgK/2/
CSS:
#b {
...
1
vote
2answers
46 views
100% footer with no divs
I'm making a template based on not using DIVs, but I am having trouble with the footer. I was wondering if I could have a 100% width footer (a bit like stackoverflow) that actually sticks to the ...
0
votes
2answers
20 views
Why doesn't this media query work?
Code:
@media screen and (min-width: 371px) {
.img_displayer {
display:none;
}
}
If i am not wrong, the above code says that if the min-width of the browser becomes 371px the ...
0
votes
1answer
24 views
CSS Asterisk (*) selector inside the brackets
I know that the * selector selects all elements if used as such:
Example 1:
* {
margin: 0;
padding: 0;
}
But what does it mean when it is put like this:
*zoom: 1; or *margin-left: ...
0
votes
2answers
30 views
How can I control an image being displayed in the html selector in css?
CODE:
html {
background: url("/_images/back.png") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
...
0
votes
0answers
44 views
Apply Padding to Elements with Certain Class after <h1>
I'm trying to apply padding only to elements that have a specific class (in this case, .specialInstructionsNotes) and are of the last type or only type after a header1 <h1> element.
Note: I'm ...