Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

267
votes
9answers
173k views

How to set cellpadding & cellspacing in CSS?

How can I control cellpadding and cellspacing in a CSS stylesheet to obtain the same effect as when putting the attributes on the table tag?
51
votes
8answers
56k 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> ...
48
votes
5answers
19k 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 ...
38
votes
6answers
9k 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 ...
37
votes
9answers
15k views

Is putting a div inside a anchor ever correct?

I've heard that putting a block element inside a inline element is a HTML sin: <a href="http://www.mydomain.com"><div> What we have here is a problem. You see, an anchor element is an ...
29
votes
12answers
5k 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 ...
19
votes
9answers
2k 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 ...
17
votes
2answers
2k 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?
14
votes
3answers
228 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
433 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 ...
12
votes
2answers
219 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 ...
11
votes
2answers
179 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
6answers
9k 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. ...
11
votes
8answers
17k 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 ...
11
votes
9answers
17k 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 ...
10
votes
5answers
9k 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?
10
votes
2answers
3k 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 ...
9
votes
2answers
133 views

Tool for checking unused CSS selectors?

I have read some answers on Stack Overflow about this topic. 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. ...
9
votes
4answers
405 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; ...
8
votes
3answers
443 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 ...
8
votes
9answers
410 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
2answers
116 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
2answers
958 views

@import or <link> for importing stylesheets?

Which method is best for importing multiple stylesheets? Is one method more efficient than the other?
7
votes
1answer
105 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: ...
7
votes
1answer
297 views

Password Inputs Font/Style

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, ...
7
votes
5answers
454 views

What is the purpose of the 'div' selector and why do so many developers use it in their style sheets?

Looking through style sheets from popular & unpopular websites I have found the div selector included in them. The bottom four examples were taken from the style sheets of the popular sites Stack ...
7
votes
6answers
348 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 ...
6
votes
2answers
184 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 ...
6
votes
3answers
140 views

What does @import do?

I saw this code some where, and I'm wondering what @import supposed to do? I don't think this is a server side thing. Is this processed by the browser?? <style type="text/css"> @import ...
6
votes
6answers
180 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>
6
votes
1answer
761 views

stylesheet_link_tag(:all) generates reference to `all.css` on Heroku

I have stylesheet_link_tag(:all) in my layout. It behaves as expected on local machine, even when I run it in production environment (rails s -e production). By expected I mean that it emits all the ...
6
votes
1answer
153 views

Markup/Style best practices: How to efficiently distribute style rules over CSS classes?

Assume that I have some HTML page, and a corresponding CSS file. I'd like to add rounded corners to some elements. I want to alternate background colors on every other section. I want to add a ...
6
votes
8answers
111 views

Stylesheets for content?

Forgive my ignorance since this seems like its something I should know by now. I know I could make a stylesheet that will allow me to make changes in my CSS throughout several pages that use the CSS. ...
6
votes
1answer
824 views

Linking a CSS Stylesheet with an ASP.NET Custom Control

I'm developing a custom control which is a composition of tables and buttons. I also have an external CSS stylesheet that defines the styles for these elements. The Control's type is ...
6
votes
1answer
6k 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 ...
6
votes
2answers
1k 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
14k views

How to change the style of Title attribute inside the anchor tag?

Example: <a href="example.com" title="My site"> Link </a> How do I change the "title" attribute. By default, it just has yellow background and small font. I would like to make it bigger ...
6
votes
3answers
2k views

Flex External Stylesheet Conventions

I know that there are questions regarding this same topic, but for HTML. What are some good conventions in regards to using external stylesheets in a Flex app.? How would you break up the ...
6
votes
4answers
6k 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 ...
6
votes
2answers
5k 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 ...
6
votes
6answers
7k views

Handling URLs inside a CSS in CakePHP

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, ...
5
votes
4answers
63 views

How to target HTML element from a specific class of a BODY element

Using Drupal, the theme has a background color assigned to the <HTML> element. I'm creating a separate print CSS for ONE particular page, and wish to remove the background color ONLY for this ...
5
votes
3answers
101 views

Selecting css file dynamically by clicking on the button in FLEX 3

I need to create an application in which we are changing the style of the application that is theme of the application based on the button click. I have download the theme that all contains different ...
5
votes
1answer
153 views

Third Party Visual Studio Stylesheet / CSS Editor

Any good (free) style sheet editors that I can use with visual studio? I recently found a resource editor that I found was better than the default version that opens .resx files. I'm thinking there ...
5
votes
5answers
129 views

Should I write the full hierarchy path in my CSS definitions for each element/class?

Should my stylesheet definitions mirror the DOM hierarchy? If I have: <div id="container"> <div class="item"> <div class="property"> <span ...
5
votes
4answers
194 views

How to remove underline from a link and add underline on hover? (images attached)

I want underline to be removed from a link. Also I want underline to appear when I hover it with my mouse pointer. How can this be done? Pls help. No hover: When I hover the Login link:
5
votes
1answer
197 views

XSLT fails to add DOCTYPE using xs:output

I'm using XSLT to create a HTML output page. I need to add a doctype to the output page. I googled and this seems to be able to get it working: <xsl:output doctype-public="-//W3C//DTD XHTML 1.0 ...
5
votes
4answers
158 views

Is there an easy way to style the last couple characters of a string?

I have some floating point numbers where I would like to indicate that that the last few digits are not that important. What I have in mind is something like this. For the number 273.978 <span ...
5
votes
1answer
315 views

How to reference CDN images in a stylesheet which may use HTTPS?

I have all my site images setup to serve from Amazon's Cloudfront CDN. If my pages will sometimes be served as both HTTP and HTTPS, then should I make all image paths HTTPS to the CDN? Is this a poor ...
5
votes
4answers
271 views

Cleaning up CSS files

I have a bunch of CSS files with a bunch of classes. I know a lot are not used. Is there a tool that will scan your site and clean up your CSS files or tell me which ones aren't used?

1 2 3 4 5 18