Transform property does not work in Firefox but does in Chrome and Safari. What to do?
Udate
Appeal for consistency - Mozilla bug
Udate
Adding
transform: rotateY(0deg);
to one side of the card, is a temporary fix that needs to be fixed properly.
The duplicate does not affect this solution and is vague.
Question
Particularly the backface-visibility
here:
.card__face {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
I tried adding the -moz-
prefix despite it supposedly not being needed according to caniuse:
Still it does not work. Chrome worked without any prefix and Safari worked with -webkit-
prefix contrary to caniuse.com.
Here is the jsfiddle. Clicking on the icon should make the icon rotate 180 degrees.
javascript css reactjs firefox css-transforms
add a comment |
Udate
Appeal for consistency - Mozilla bug
Udate
Adding
transform: rotateY(0deg);
to one side of the card, is a temporary fix that needs to be fixed properly.
The duplicate does not affect this solution and is vague.
Question
Particularly the backface-visibility
here:
.card__face {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
I tried adding the -moz-
prefix despite it supposedly not being needed according to caniuse:
Still it does not work. Chrome worked without any prefix and Safari worked with -webkit-
prefix contrary to caniuse.com.
Here is the jsfiddle. Clicking on the icon should make the icon rotate 180 degrees.
javascript css reactjs firefox css-transforms
1
Possible duplicate of Backface-Visibility Not Working Properly in Firefox (Works in Safari)
– jmargolisvt
Nov 20 '18 at 0:53
Similar but DIFFERENT please remove the dup tag.
– user9723618
Nov 20 '18 at 1:27
add a comment |
Udate
Appeal for consistency - Mozilla bug
Udate
Adding
transform: rotateY(0deg);
to one side of the card, is a temporary fix that needs to be fixed properly.
The duplicate does not affect this solution and is vague.
Question
Particularly the backface-visibility
here:
.card__face {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
I tried adding the -moz-
prefix despite it supposedly not being needed according to caniuse:
Still it does not work. Chrome worked without any prefix and Safari worked with -webkit-
prefix contrary to caniuse.com.
Here is the jsfiddle. Clicking on the icon should make the icon rotate 180 degrees.
javascript css reactjs firefox css-transforms
Udate
Appeal for consistency - Mozilla bug
Udate
Adding
transform: rotateY(0deg);
to one side of the card, is a temporary fix that needs to be fixed properly.
The duplicate does not affect this solution and is vague.
Question
Particularly the backface-visibility
here:
.card__face {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
I tried adding the -moz-
prefix despite it supposedly not being needed according to caniuse:
Still it does not work. Chrome worked without any prefix and Safari worked with -webkit-
prefix contrary to caniuse.com.
Here is the jsfiddle. Clicking on the icon should make the icon rotate 180 degrees.
javascript css reactjs firefox css-transforms
javascript css reactjs firefox css-transforms
edited Nov 20 '18 at 1:22
asked Nov 20 '18 at 0:44
user9723618
1
Possible duplicate of Backface-Visibility Not Working Properly in Firefox (Works in Safari)
– jmargolisvt
Nov 20 '18 at 0:53
Similar but DIFFERENT please remove the dup tag.
– user9723618
Nov 20 '18 at 1:27
add a comment |
1
Possible duplicate of Backface-Visibility Not Working Properly in Firefox (Works in Safari)
– jmargolisvt
Nov 20 '18 at 0:53
Similar but DIFFERENT please remove the dup tag.
– user9723618
Nov 20 '18 at 1:27
1
1
Possible duplicate of Backface-Visibility Not Working Properly in Firefox (Works in Safari)
– jmargolisvt
Nov 20 '18 at 0:53
Possible duplicate of Backface-Visibility Not Working Properly in Firefox (Works in Safari)
– jmargolisvt
Nov 20 '18 at 0:53
Similar but DIFFERENT please remove the dup tag.
– user9723618
Nov 20 '18 at 1:27
Similar but DIFFERENT please remove the dup tag.
– user9723618
Nov 20 '18 at 1:27
add a comment |
1 Answer
1
active
oldest
votes
Add rotateY(0deg)
to your .card__face--front
class.
.card__face--front {
transform: rotateY(0deg);
}
http://jsfiddle.net/3h0cgukf/
That's odd. The fiddle works fine in Chrome on my side Version 69.0.3497.100 (Official Build) (64-bit) Mac OS
– james.brndwgn
Nov 20 '18 at 1:12
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384655%2ftransform-property-does-not-work-in-firefox-but-does-in-chrome-and-safari-what%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Add rotateY(0deg)
to your .card__face--front
class.
.card__face--front {
transform: rotateY(0deg);
}
http://jsfiddle.net/3h0cgukf/
That's odd. The fiddle works fine in Chrome on my side Version 69.0.3497.100 (Official Build) (64-bit) Mac OS
– james.brndwgn
Nov 20 '18 at 1:12
add a comment |
Add rotateY(0deg)
to your .card__face--front
class.
.card__face--front {
transform: rotateY(0deg);
}
http://jsfiddle.net/3h0cgukf/
That's odd. The fiddle works fine in Chrome on my side Version 69.0.3497.100 (Official Build) (64-bit) Mac OS
– james.brndwgn
Nov 20 '18 at 1:12
add a comment |
Add rotateY(0deg)
to your .card__face--front
class.
.card__face--front {
transform: rotateY(0deg);
}
http://jsfiddle.net/3h0cgukf/
Add rotateY(0deg)
to your .card__face--front
class.
.card__face--front {
transform: rotateY(0deg);
}
http://jsfiddle.net/3h0cgukf/
answered Nov 20 '18 at 0:53
james.brndwgnjames.brndwgn
363111
363111
That's odd. The fiddle works fine in Chrome on my side Version 69.0.3497.100 (Official Build) (64-bit) Mac OS
– james.brndwgn
Nov 20 '18 at 1:12
add a comment |
That's odd. The fiddle works fine in Chrome on my side Version 69.0.3497.100 (Official Build) (64-bit) Mac OS
– james.brndwgn
Nov 20 '18 at 1:12
That's odd. The fiddle works fine in Chrome on my side Version 69.0.3497.100 (Official Build) (64-bit) Mac OS
– james.brndwgn
Nov 20 '18 at 1:12
That's odd. The fiddle works fine in Chrome on my side Version 69.0.3497.100 (Official Build) (64-bit) Mac OS
– james.brndwgn
Nov 20 '18 at 1:12
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384655%2ftransform-property-does-not-work-in-firefox-but-does-in-chrome-and-safari-what%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Possible duplicate of Backface-Visibility Not Working Properly in Firefox (Works in Safari)
– jmargolisvt
Nov 20 '18 at 0:53
Similar but DIFFERENT please remove the dup tag.
– user9723618
Nov 20 '18 at 1:27