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?
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 ...
33
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?
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.
5
votes
3answers
7k views
How do I switch my CSS stylesheet using jQuery?
What I'm working on is simple.
You click on a button (id="themes") and it opens up a div (id="themedrop") that slides down and lists the themes. (I only have two at this point)
<button ...
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 ...
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 ...
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 ...
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 ...
7
votes
8answers
8k views
How can I locate the default style sheet for a browser?
I would like to see the specific style elements that are used in the default stylesheet for the various browsers. Do the browsers have an actual file based stylesheetss that I locate on my system and ...
7
votes
4answers
7k views
Android layout with sqare buttons
I want to make a layout similar to this one:
Four square buttons on the screen - each of those using half of the screen with/screen height (whichever is smaler). Independent of screen ...
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>
...
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 ...
11
votes
2answers
919 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 ...
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?
3
votes
3answers
15k views
Append a stylesheet to an iframe with jQuery
I'm creating an HTML editor, similar to this one I'm typing in right now with the output below. I'm using an iframe and dumping the $htmlTextBox.val() into the body of the iframe.
I'm trying to ...
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 ...
6
votes
2answers
3k views
CSS parser/abstracter? How to convert stylesheet into object
Is there a standard or reliable method already out there for a javascript framework such as jquery to parse a stylesheet into an object?
Two reasons for why I'm wondering:
I have seen a couple of ...
6
votes
4answers
656 views
Size of zero pixels in CSS with or without 'px' suffix?
Googling for the answer to this question has proven difficult so I figured somebody here should know.
Within CSS, I've seen zero pixels declared as simply '0' yet also as '0px'.
mystyle { width: 0; ...
2
votes
2answers
8k views
Get Element StyleSheet Style in JavaScript
I've been using John Resig's getStyle function from Pro JavaScript Techniques to get the style of elements:
function getStyle(elem, name) {
// J/S Pro Techniques p136
if (elem.style[name]) {
...
4
votes
4answers
10k views
jQuery CSS - Write into the <style>-tag
I want to change the background-color of the body of my HTML document. My problem is that jQuery adds the style to the body tag, but I want to change the value in the style tag. Is this possible using ...
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?
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 ...
5
votes
3answers
3k views
slash(/) vs tilde slash (~/) in style sheet path in asp.net
How these 2 paths are resolved in asp.net.
why these 2 gives different path. At what time we need to go for these.
<link href="/common/black_theme/css/style.css" rel="stylesheet"> (this is ...
2
votes
12answers
686 views
Is using the style attribute frowned upon?
As someone who is beginning to make a transition from table based design to full CSS I'm wondering if using the style attribute to make adjustments to elements is considered "cheating" and if ...
1
vote
4answers
3k views
Changing a stylesheet using jQuery
How can I change a stylesheet using jquery in div tag on html? or what is the jquery code for changing stylesheets?
in javascript, we use the below code :
<script type="text/javascript">
...
0
votes
4answers
5k views
Apply different css stylesheet for different parts of the same web page [closed]
I have a web page with different parts which require different css stylesheets to be applied to each. What I would like to know is how to specify which css stylesheet to use for each different part of ...
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 ...
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 ...
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 ?
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 ...
6
votes
4answers
4k views
Access CSS file contents via JavaScript
Is it possible to get the entire text content of a CSS file in a document? F.ex:
<link rel="stylesheet" id="css" href="/path/to/file.css">
<script>
var cssFile = ...
5
votes
2answers
1k views
ASP.NET Theme stylesheet rendering
When a page with theme is rendered, the stylesheets link tags in the given theme are rendered right before the closing head tag. Does anyone know of a way to change that? Is there a way that I could ...
2
votes
3answers
2k views
How to retrieve a style's value in javascript?
I am looking for a way to retrieve the style from an element that has a style set upon it by the style tag.
<style>
#box {width: 100px;}
</style>
In the body
<div ...
7
votes
1answer
218 views
Getting CellDingbat to remember its state between Mathematica sessions
I have modified my notebook's stylesheet to include a StyleData["Todo"] that inherits from StyleData["Item"]. It changes the cell dingbat to a checkbox. In the stylesheet editor:
...
2
votes
1answer
505 views
add background “bars” to extend header image with color. or put image over div bars
I basically made a header image for my site and the sides of it have black on it. I want to extend the header so it goes for the width of the user's web browser with black "bars" as if the header ...
2
votes
2answers
1k views
How to add an xml-stylesheet processing instruction node with Python 2.6 and minidom?
I'm creating an XML document using minidom - how do I ensure my resultant XML document contains a stylesheet reference like this:
<?xml-stylesheet type="text/xsl" href="mystyle.xslt"?>
Thanks ...
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>
5
votes
1answer
3k views
Order of prioritization when using multiple contradictory css files
When using multiple css files on the same page and they collide, how do i know which one is going to be used? For example, if one says blue body background and the other one says red.
3
votes
1answer
532 views
Injected link stylesheet takes precedence over existing styles in IE7+
There seems to be a bug in IE when cascading dynamic stylesheets. Does anyone know if there is a workaround? Consider this:
<head>
<style>#test{background:red;}</style>
...
3
votes
3answers
3k views
ASP.NET - How to include CSS only if it isn't alrealy included?
I use the code bellow to dynamically include a CSS file:
HtmlHead head = (HtmlHead)Page.Header;
HtmlLink link = new HtmlLink();
link.Attributes.Add("href", ...
2
votes
2answers
578 views
How could someone replicate the Follow/Unfollow hover action on Twitter's website using Twitter Bootstrap?
When you look at who you're following on Twitter, the buttons change from Follow to Unfollow (switch from green to red AND change from check-mark to x-mark).
How would I replicate this on my website? ...
2
votes
2answers
315 views
Is it possible to alter a CSS stylesheet using JavaScript? (NOT the style of an object, but the stylesheet itself)
Is it possible to alter a CSS stylesheet using JavaScript?
I am NOT talking about:
document.getElementById('id').style._____='.....';
I AM talking about altering:
#id {
param: value;
}
...
2
votes
10answers
1k views
Inline styles vs styles in CSS
I know placing all your styles in a CSS file is the best thing to do as it is a lot neater.
But does it REALLY matter if the styles are inline or in a CSS?????
Edit below
My plan is to just place ...
2
votes
2answers
273 views
What is the best way to include a style sheet for a specific page?
thank you for viewing.
My website includes the same header and footer for each page using PHP.
I wanted a style sheet that only applied specifically for a certain page, so put the style in using the ...
1
vote
1answer
124 views
Is there a way to modify Jersey generated XML response to include stylesheet info?
In JAXB, it's possible (using the marshaller object). I don't know how to do it using Jersey. I was wondering if there's a way I can somehow inject something like:
<?xml-stylesheet type="text/css" ...
1
vote
3answers
1k views
JSP can't find stylesheet
Hierarchy:
WEB-INF/jsp
WEB-INF/styles
I link stylesheet in my JSP file, which is located in WEB-INF/jsp:
<link rel="stylesheet" type="text/css" href="../styles/reset.css" />
But it ...
1
vote
1answer
1k views
question about css files for smartgwt project
I have what should be a simple problem, but so far I'm unable to come up with an answer. I would be very grateful if someone can humor me and just tell me where in the smartgwt jar I can find the ...
