Tagged Questions
1
vote
1answer
60 views
Is it possible to load a local css file to the browser for certain domains?
Using developer tools, I can amend a css file for a site I'm currently viewing in a browser.
I want to, effectively, do the same - but instead of amending the css file, loading a local css file, just ...
1
vote
2answers
75 views
Does Chrome have stylesheets on my computer, too?
For example, an anchor tag, if not explicitly given a style, already has a style. It is blue, it goes purple when visited, and changes the cursor on hover.
Where does Chrome load these styles from?
...
1
vote
1answer
35 views
Defining content by browser type
I've got a page. But I found out that my position: relative; modification for Chrome doesn't look to nice on Firefox, and on IE it looks, the most ugly page ever. I got a thought of creating special ...
1
vote
1answer
42 views
Choose Stylesheet on Browser's side or on Server's side?
my problem is that I have to use different stylesheets for different browsers and I have to choose between 2 methods:
Choose with javascript on browser's side
Choose on server's side based on HTTP ...
9
votes
3answers
315 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 ...
1
vote
1answer
40 views
Viewing page source: external stylesheets appear as inlined?
Lately I've noticed a strange behaviour in my browsers, when developing a website or doing some debugging.
When I click on View Source to check the site's HTML source code, the external stylesheets ...
0
votes
2answers
88 views
How to clean style sheets mess? [duplicate]
Possible Duplicate:
How to clean up styles in a large web site?
Is there any kind of parsing tool, which can scan my *.css file across all pages of my web application and organize its ...
4
votes
3answers
1k views
how to apply css rule to the previous and the next element in HTML?
For example:
You have this:
<ul>
<li>zero</li>
<li>one</li>
<li class="selected">two</li>
<li>three</li>
<li>more ...
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 ?
3
votes
5answers
468 views
Generate CSS with PHP, yes/no?
Is there any reason you should not use PHP to overcome some of the shortcomings of CSS? Live inspection would be harder but are there any functional downsides?
0
votes
5answers
106 views
Editing websites locally
I think I read somewhere that you can edit the stylesheet of other websites locally on your computer. For example I'd like to edit the stylesheet of Facebook just for my own view. How can I do that? ...
0
votes
1answer
280 views
How to make combo box selection similar to mobile device?
I need to give user interface similar to mobile device on IE,
when user clicks on combobox it should freeze the background gray and show the selection items in large fonts - once user selects item, ...
2
votes
1answer
313 views
How to properly use media query to change a style based on display width?
I have a style which I want to be different in mobile devices.
The style is in a stylesheet containing a lot of styles.
The style is like this:
.header_wrapper{
background-image:bla bla bla;
}
...
0
votes
2answers
33 views
Is this way of declaring styles in stylesheets cross-browser compatible?
I am currently using this way of declaring multiple styles in a stylesheet:
#elem1, #elem2{
float:right;
}
.elem3, .elem4{
float:left;
}
#elem1, #elem2 h2{
font-size:20px;
}
I wonder if ...
1
vote
5answers
75 views
With CSS properties, which is more work for the browser?
I'd like to know which of the ways to do this syntax is more work for the browser:
First:
margin: 0;
Second:
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
Third:
margin: 0 ...
1
vote
3answers
489 views
Getting the output of an xslt transformed file in XML format
I have transformed one XML file to an another XML file (in desired structure) using XSLT. However i am unable to view the transformed file in XML format. It shows me plain text values.
This is my ...
0
votes
1answer
58 views
iphone detect new style sheet
I am trying to trouble shoot a css issue that is appearing only in iphone browsers. I simply need to detect if the user is using an iphone, and if so, render a modified version of the div that is ...
0
votes
5answers
203 views
CSS Text position IE/FF issue
I have this navigation
<div class="cookieBar">
<div class="light first">
<a href="#" class="ckLnk">Home</a>
</div>
<div class="dark">
...
1
vote
6answers
320 views
is it ok to use different css files for different browsers and load it accordingly
I am getting rid of browser compatibilty issues.
so i come up with idea to load the only css according to browser.
So say if user uses IE then only styleIE.css get loaded if firefox styleFF get ...
1
vote
1answer
96 views
Memory leak in Mozilla when unloading stylesheets
I'm working with Mozilla v1.7.12 on a constrained device (a Motorola set-top box) trying to resolve some memory leaks.
When I dynamically load a stylesheet which refers to some large images, I can ...
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 ...
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.
