Tagged Questions
1
vote
2answers
76 views
Textarea and div padding differences in Firefox
I made a fiddle here. http://jsfiddle.net/pmVeR/
The textarea and div render identically in both Safari and Chrome. But in Firefox, there is an extra 2px padding on the right of the textarea, which ...
1
vote
0answers
66 views
Extent of anonymous table cell: Is Gecko or Webkit right?
Consider the following HTML markup:
<ul>
<li>Short</li>
<li>LOOOOOOOOOOOOOOOOOOONG</li>
</ul>
<table>
<tr>
...
2
votes
0answers
57 views
How does firefox do css rendering [closed]
It may be a little academic. I am trying to find out the detail about css rendering in browsers. I have known that both Gecko and Webkit use hash map, style sharing to speed up css selectors matching.
...
1
vote
1answer
645 views
Downloadable font on firefox: bad URI or cross-site access not allowed
I'm a webmaster at http://www.beperk.com (I'm giving you the url so you are able to check the problem) and I'm having lots of problems using @font-face in CSS.
I want to use the foundicons from zurb ...
0
votes
1answer
45 views
Different img height/width between WebKit/Gecko when using attribute 'auto'
I'm seeing different height and width for an image between WebKit and Gecko/Trident, and am not able to narrow down what is causing the difference, and what should be the workaround.
The page in ...
2
votes
3answers
284 views
Does font-size affect the rendering of ligatures?
Gecko and Webkit browsers support rendering of ligatures ff fi fl ffl via text-rendering: optimizeLegibility (font must have ligatures, e. g. Calibri).
MDN page says, that only text of size 20px and ...
0
votes
1answer
75 views
Auto cursor not applied in Gecko
This seems like a rendering engine quirk, as it had been tested and failed to reproduce on WebKit driven browsers (Chrome and Safari for Windows).
Description
When using a deep nested DOM structure, ...
0
votes
1answer
50 views
SVG + CSS3 bug, multiple browsers?
Take a look at this: http://jsfiddle.net/5fLtb/3/
When you hover over it in webkit browsers (Chrome/Safari), it seems to glitch and go light blue then to the proper colour.
In Gecko browsers ...
7
votes
2answers
335 views
CSS “outline” different behavior behavior on Webkit & Gecko
I'm working on an experiment & I found out that the "outline" CSS2 property is not implemented the same way on Webkit & Gecko
In the script below, I have a absolute position div inside ...
0
votes
3answers
241 views
Center div vertical, works fine with webkit but bug in firefox
I have a problem centering div in Firefox, it seems to work fine in all webkit browsers, so I dont really know what I'm doing wrong:
My CSS:
html {
width: 100%;
height: 100%;
}
body {
position: ...
1
vote
3answers
280 views
Firefox/Gecko adding spacing around inline-block divs?
I know that the real goal I'm seeking is the css holy grail, but in this really simple experiment, I'm getting "phantom" spacing that I'm hoping someone can explain.
The following occurs in Firefox, ...
1
vote
2answers
205 views
Cross browser inconsistencies with margins?
I'm having a small problem with x-browser compatibility (Chrome and FF) for a textarea and margins.
The page in question is here: http://www.mylesgray.com/contact/
The textarea under "Message" as ...
1
vote
1answer
195 views
Webkit Bug? Broken CSS
Working on part of my website. Here's my code: http://jsfiddle.net/firelizzard/ASdMq/
In Chrome Beta (WebKit):
In Firefox (Gecko):
Gecko is rendering this code how I want it. What is up with ...
6
votes
3answers
187 views
Buttons too tall on Firefox
I've got a problem unique to Firefox. I'm trying to style links and buttons to look exactly the same. On every browser except Firefox, this works as desired. On Firefox, the height of the button's ...
0
votes
1answer
228 views
Webkit adding unwanted, additional space above single text character
Have a situation where I am adding a single character in a div with a button background. Seems pretty straight forward. However, the text placement is different between FF and Safari / Chrome. I ...
1
vote
1answer
315 views
Gecko vs. Webkit : padding inside inline blocks
Here's the fiddle showing my problem: http://jsfiddle.net/7QaXL/1/
In the webkit-based browsers the padding of the <p>s seem to push the images up, which is not what I want.
So my questions ...
0
votes
3answers
376 views
Why do different browsers require their own border radius style?
I've wondered this for a while. Why do different browsers only support the CSS border-radius property if it is prefixed with their own special prefix. I don't understand why I have to write this:
/* ...
0
votes
1answer
74 views
Dynamic generation of stylesheets added to Firefox?
One can use the nsIStyleSheetService in Firefox to load and register stylesheets which apply in a similar way to userstyle.css; they are applied to every page loaded. However, this service takes ...
7
votes
2answers
2k views
moz-transform scale decrease div size problem
I'm having problems with mozilla moz-transform scale property.
I'm looking for a replacement of the zoom property, which works fine in everything except firefox.
When I want to shrink the div, its ...
5
votes
3answers
3k views
Is there a Gecko equivalent to -webkit-mask or a fancy way of degrading for Gecko browsers?
I'm looking for a solid answer on whether or not there is an equivalent to -webkit-mask in Gecko browsers/Firefox?
If not, is there any way of degrading -webkit-mask in CSS to a straight ...
1
vote
4answers
2k views
Reference to browser-specific CSS?
I'm looking for a reference for browser specific CSS.
All the things that start with -moz, -webkit, -o, -khtml
In this question for instance, the person answers with all the user-select
codes for ...
0
votes
2answers
914 views
What's causing this difference in rendering between Webkit and Gecko + Trident?
I've submitted this to the Webkit bugzilla (including full CSS and HTML) a week ago but didn't receive a response so far. In the mean time, I'd like to know if it's me or Webkit doing something ...
1
vote
1answer
654 views
Style behavior difference between WebKit and Gecko
I was working on a web application when I noticed some peculiar behavior. I have an element with styles applied via the JavaScript style property. Afterwards, I tried to remove all of the styles ...
1
vote
3answers
1k views
CSS box-shadow issues
I'm building this page: http://ss.rsportugal.org/
As you can see, there are two 10 pixel shadows in the page. One just bellow the menu and the other just above the footer bar.
These shadows are made ...
5
votes
2answers
994 views
Print Stylesheet - Printed Page width Different in Webkit vs. Gecko/IE
When printing the page below in Safari/Chrome, the content (everything on the page, basically) is squished into the left side of the page, at about 60% of the page's width.
However, in FireFox and IE ...
4
votes
1answer
2k views
How can I enable child inputs text selection in Mozilla Firefox using CSS?
Let's consider the following scenario. I have the following page where all rendered elements must be non-selectable.
<html>
<head>
<style type="text/css">
body {
...
0
votes
1answer
176 views
How would I alter HTML displayed in VB.net application using Gecko
I would like to know how I would go about altering the HTML that is displayed by my VB.net application using GeckoFX. What I would like to do restrict certain words/names/attributes from showing in ...
7
votes
2answers
5k views
What is -moz-use-text-color?
I understand it's deprecated in FireFox, and its replacement is currentColor. My impression is that it's used for SVG-related stuff. But what the heck is it? :)
0
votes
2answers
517 views
Firefox 3.0 CSS Drop Shadows
What is a technique to add drop-shadows to text that would work in Firefox 3.0?
FF3.5 and Chrome support the CSS3 property drop-shadow:
p { text-shadow: #000 2px 5px; }
IE6, 7, 8 support filters:
...
6
votes
2answers
5k views
Disappearing CSS table cell borders in Gecko-based browsers
I have a very specific html table construct that seems to reveal a Gecko bug.
Here's a distilled version of the problem. Observe the following table in a gecko-based browser (FF, for example): ...