A style sheet is made up of style rules that tell a browser how to present a document. Its contains the CSS that is used in HTML file. Questions having the problem related to design will come under this tag.
862
votes
13answers
487k views
How to set cellpadding and cellspacing in CSS?
In inline HTML, the table styles cellpadding and cellspacing can be set
<table cellspacing="1" cellpadding="1">
How would this be accomplished using a CSS stylesheet?
146
votes
10answers
114k views
How can I make a TextArea 100% width without overflowing when padding is present in CSS?
I have the following HTML snippet being rendered.
<div style="display: block;" id="rulesformitem" class="formitem">
<label for="rules" id="ruleslabel">Rules:</label>
...
105
votes
8answers
57k views
HTML Print Header & Footer
Is it possible to print HTML pages with custom headers & footers on each printed page?
I'd like to add the word "UNCLASSIFIED" in red, Arial, size 16pt to the top and bottom of every printed ...
70
votes
16answers
18k views
Single huge .css file vs. multiple smaller specific .css files?
Is there any advantage to having a single monster .css file that contains style elements that will be used on almost every page?
I'm thinking that for ease of management, I'd like to pull out ...
47
votes
7answers
15k views
Suggest a good Doxygen stylesheet
I am using Doxygen to generate HTML documentation from my code. However I find that default stylesheet has quite poor choice of fonts and layout. I know I can write my own CSS file to get exactly the ...
46
votes
7answers
40k views
How to dynamically create CSS class in JavaScript and apply?
I need to create a CSS stylesheet class dynamically in JavaScript and assign it to some HTML elements like - div, table, span, tr, etc and to some controls like asp:Textbox, Dropdownlist and datalist.
...
35
votes
1answer
21k views
How do I apply a style to all buttons of an Android application
I have a style applied to my whole application:
AndroidManifest.xml:
<application android:theme="@style/ApplicationStyle" android:icon="@drawable/icon" android:label="@string/app_name">
And ...
34
votes
4answers
23k views
Is there an easy way to reload css without reloading the page?
I'm trying to make a live, in-page css editor with a preview function that would reload the stylesheet and apply it without needing to reload the page. What would be the best way to go about this?
29
votes
9answers
5k views
How to fallback to local stylesheet (not script) if CDN fails
I am linking to the jQuery Mobile stylesheet on a CDN and would like to fall back to my local version of the stylesheet if the CDN fails. For scripts the solution is well known:
<!-- Load jQuery ...
27
votes
8answers
46k views
Can you use if/else conditions in CSS?
I would like to use conditions in my CSS.
The idea is that I have a variable that I replace when the site is run to generate the right style-sheet.
I want it so that according to this variable the ...
23
votes
2answers
4k views
How Can I Have View-Specific <head> contents Using Asp.Net MVC 3 and Razor?
I want to link a specific style sheet in certain Views in addition to what already gets linked in _Layout.cshtml. For non-Razor, I see using the content place holder. How would I do this for Razor?
19
votes
3answers
4k views
Is type=“text/css” necessary in a <link> tag?
I was wondering whether or not it is necessary to use <link rel="stylesheet" type="text/css" href=...> over <link rel="stylesheet" href=...>. The rel="stylesheet" marks the information ...
17
votes
6answers
6k views
Browsers' default CSS stylesheets
Are there any lists of browser default CSS stylesheets? (browser stylsheets in tabular form)
I want to know the default font of textareas across all browsers and also for future reference.
16
votes
7answers
22k views
Will targeting IE8 with conditional comments work?
When IE8 is released, will the following code work to add a conditional stylesheet?
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="ie-8.0.css" />
<![endif]-->
I've ...
16
votes
1answer
5k views
Internet Explorer's CSS rules limits
I've read conflicting information regarding Internet Explorer's silly CSS limits. I am (think I am) understanding that you can only have 31 <style> and <link> tags (combined), and that ...
16
votes
2answers
4k views
jQuery equivalent of YUI StyleSheet Utility?
Does jQuery - or one of it's plugins - have equivalent functionality to the YUI StyleSheet Utility?
"The StyleSheet Utility is capable of creating new stylesheets from scratch as well as modifying ...
15
votes
3answers
456 views
How to read a browser's unsupported CSS properties?
Quite by accident today, I discovered that in IE6, IE7 and IE8 it is possible to read unsupported CSS properties using the .css() method of jQuery:
jQuery(node).css('transition'); // Returns the ...
13
votes
4answers
7k views
CSS position:fixed inside a positioned element
I have a positioned div whose content can be too long so scrollbars appear (overflow:auto set). It functions as a dialog box in an ajax app. I want to fix a close button on it's right top corner so ...
13
votes
2answers
12k views
How to load CSS using jquery
I have loaded a css file on server so I am having a URL with me. How can i load it in my perl code using JQuery ?
So currently I am hardcoding the css in my mason page which is missing from the page ...
13
votes
8answers
9k views
Javascript: Detect Metro UI Version of IE 10
Serving OS dependend assets is the future.
What's the fastest method, to detect User-Agent as Metro UI Version of IE 10 ?
13
votes
2answers
813 views
Where can I find a stylesheet for RSS feeds?
I want to style my RSS feeds, I want to use stylesheets like FeedBurner. However, I do not like FeedBurner's style. Where can I find more stylesheets to use? I googled "RSS stylesheet", "xsl rss ...
13
votes
5answers
2k views
“Compile” CSS into HTML as inline styles
I am writing an e-mail HTML template, and some e-mail clients do not support <style> for specifying CSS. The only alternative for applying CSS is to use inline styles (style attribute). Is ...
13
votes
2answers
620 views
How can I “reset” styles for a given HTML element?
I am working on an embeddable javascript which inserts HTML elements onto unknown pages. I have no control of the stylesheets of the pages I'll be inserting HTML into. The problem is that the HTML I ...
11
votes
4answers
4k views
Are Qt's stylesheets really handling _dynamic_ properties?
Is Qt's dynamic properties really so dynamic with stylesheets?
I have the basic example from stylesheets and dynamic properties:
/*stylesheet:*/
*[field_mandatory="true"] { background-color: ...
11
votes
2answers
921 views
Tool for checking unused CSS selectors?
I know there is an extension called Dust-Me Selectors for Firefox and also that it doesn't look at dynamic HTML generated by JavaScript.
I'm looking for tool(s) that can identify all unused selectors ...
11
votes
2answers
7k views
Styling Password Fields in CSS
I'm experiencing a minor issue with fonts in my stylesheet.
This is my CSS:
body
{
...
font: normal 62.5% "Lucida Sans Unicode",sans-serif;
}
#wrapper_page
{
...
font-size: 1.2em;
}
input, ...
10
votes
4answers
5k views
Can jQuery change css style definition? (not individual css of each element)
I haven't seen any docs saying jQuery can change any CSS definition such as changing
td { padding: 0.2em 1.2em }
to
td { padding: 0.32em 2em }
but either have to change a whole style sheet, or ...
9
votes
3answers
18k views
Target IE9 Only via CSS
Just wondering given these IE hacks in my bag of tricks
"\9" - for IE8 and below.
"*" - for IE7 and below.
"_" - for IE6.
i.e. such as
body {
border:2px solid blue;
border:2px solid ...
9
votes
6answers
51k views
How can I disable inherited css styles?
So I am creating a container with rounded corners using the following method:
div.rounded {
background: #CFFEB6 url('tr.gif') no-repeat top right;
}
div.rounded div {
background: ...
9
votes
4answers
5k views
How do I identify and eliminate unused CSS styles from my bloated stylesheet?
I have a legacy stylesheet that is now full of unused styles. The problem is identifying the necessary from the unnecessary. Are there any tools to help with this?
9
votes
2answers
186 views
Difference between type=“text/css” and type=“text/stylesheet”?
More out of general interest more than anything, but what's the difference between
<link rel="stylesheet" href="/css/test.css" type="text/css"/>
and
<link rel="stylesheet" ...
9
votes
6answers
339 views
style type=“text/css” … what else is there?
Are there any other types that browsers support for the style tag besides "text/css"? (Excluding any synonyms for css). If not, then why not?
<style type="???"> ... </style>
9
votes
2answers
2k views
@import or <link> for importing stylesheets?
Which method is best for importing multiple stylesheets? Is one method more efficient than the other?
9
votes
4answers
1k views
Qt style sheets bugs?
I have a many bugs at simple QSS(Qt style sheets). Is it bugs of Qt?
Example:
Style sheets:
#check1 {
color: red //didn't work here
}
#check2 {
color: red; ...
9
votes
5answers
5k views
How do you determine media type in Javascript?
I looked around and didn't see this question asked yet.
What's a reliable way in Javascript to determine the media type (e.g. screen, print, handheld) of the page? I've seen references to ...
9
votes
2answers
1k views
When is a stylesheet added to document.styleSheets
I'm trying to dynamically add a css stylesheet rule using javascript, something like example 2
here.
It works most of the time, but there seems to be a race condition that makes it fail sometimes in ...
9
votes
3answers
312 views
Zooming out on Browser causes styling issues
When zooming out on Firefox (and most other browsers), the layout of the right side-bar and the top menu breaks. The side-bar jumps to the bottom of the page. To replicate this issue, please visit the ...
8
votes
6answers
15k views
Removing the image border in Chrome/IE9
I am trying to get rid of the thin border that appears for every image in CHrome & IE9.
Thru CSS, I set outline: none; border: none; Using jQuery, I also added the border=0 attribute for every ...
8
votes
9answers
520 views
Big development teams can't handle a single CSS style sheet?
I am currently in a 5-7 large development team creating a really large website with lots of pages and features.
I feel like we are in such a situation where a developer can change the style sheet to ...
8
votes
4answers
16k views
Margin while printing html page
I am using a separate style-sheet for printing. Is it possible to set right and left margin in the style-sheet which set the print margin (i.e. margin on paper).
Thanks.
8
votes
7answers
12k views
How are URLs handled inside the CSS file in CakePHP so they reference the correct location?
I am designing a website using CSS Files a lot, but I have several occurrences of background images, images for bullets in lists and I will probably find another need for the css url() function.
But, ...
8
votes
2answers
20k views
Overriding a CSS style
In a global style sheet used across all of our pages sits the following line:
ul { margin: 0; }
li { list-style-type: none; padding-bottom: 3px; }
Therefore, any ul's inside my pages render with no ...
8
votes
2answers
8k views
Rails - Add style/image to button_to
I'm developing in rails right now and I was wondering if there are any easy ways to add some style to the button_to control.
Can you add styling to the
<%= submit_tag 'Log in' %>
or
...
8
votes
4answers
9k views
Screen and Mobile Stylesheets
I've looked through the stack overflow topics on this question, as well as some google search results but I can't seem to solve my issue.
I've created a stylesheet for mobile devices(mobile.css) ...
8
votes
6answers
947 views
Styling the “html” element in CSS?
Can anyone explain to me why can we style the element html?
What are differences between it and body?
I usually see tutorials and multiple websites using body and never html, I only found about it ...
8
votes
2answers
249 views
Get Source of HTML File with CSS Inline
Is there a simple way to save an HTML page that has an external stylesheet (1 or more) referenced but force all of the rules to be inserted into the page itself, inline? So basically I want to move ...
8
votes
1answer
4k views
Adding styles and scripts to ASP.NET web controls (ascx) without repeating inclusion directives
Consider to develop a web control (ASP.NET). What you would really like to do is styling and developing this control in a very good way, here's a very good way to do this (this is how I would like to ...
8
votes
3answers
2k views
Examples of high-contrast, low-vision stylesheets?
Could you recommend some links to live sites which provide an alternate stylesheet for visually impaired users, e.g. short-sighted, daltonism, protanopia etc.
Any good practices presented in real ...
7
votes
3answers
7k views
Removing newline after <h1> tags?
I am having a problem with removing linebreaks after the <h1> tag, as everytime it prints, it adds a line break straight after it, so something like <h1>Hello World!</h1> ...
7
votes
4answers
9k views
Nicer alternative to the default Rails scaffolding stylesheet: scaffold.css?
I'm looking for a more attractive alternative to the standard scaffold.css?
Has anyone come across a stylesheet that was specifically designed as a more attractive, less sparse alternative to the ...
