Tagged Questions
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 ...
4
votes
1answer
3k views
-moz-background-clip: *text* in Mozilla
Is there a good way to implement this in Mozilla? I have done it successfully in Webkit using -webkit-background-clip: text;. I have been trying to implement it into Firefox with no success. MDN has ...
0
votes
3answers
399 views
transition effects not happening in Firefox and Opera
i tried to create a drop down menu effect using transition effects in css3 .the effects were not being produced in firefox and opera although it was in safari and chrome
for transition i used
...
2
votes
1answer
214 views
-moz-column doesn't work correctly with rtl direction
I have a div container with fixed height , fixed width and overflow hidden
I need to display text in 4 columns
The problem is :
with direction 'rtl' , firefox display the latest 4 columns and hide ...
14
votes
2answers
22k views
-webkit- and -moz-border-radius does not work on tables?
This works
div {
-moz-border-radius: 5px 5px 0 0;
border:1px solid #000;
margin:30px;
}
This does not work
table {
-moz-border-radius: 5px 5px 0 0;
border:1px solid #000;
margin:30px;
...