본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Rounded corners do not work in Firefox 13.0

more options

When trying to style css with the 'moz' rounded corner CSS it does not display correctly in Firefox 13.0 it shows it as a box rather than being rounded.

When trying to style css with the 'moz' rounded corner CSS it does not display correctly in Firefox 13.0 it shows it as a box rather than being rounded.

선택된 해결법

I have tested it in firefox 12 and nightly. I have got perfect results. It shows rounded corners. could you send your code and please check you code once. it works fine without adding -moz- also.

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (11)

more options

Thank you!

more options

Firefox 15 doesn't exist yet!

more options

FB92, I don't know what planet you're on, but version 15 doesn't exist yet!

more options
more options

Version 15 is in the beta. From what I can guess, the rounded corners problem will not be fixed, and I will still stay at version 12 until it is fixed.

more options

Hi jjalarie, if it's your website, you need to update the CSS rules because the change is permanent. If it's not your website, and you want to see rounded borders return to the site, you could send the webmaster a link to this thread.

more options

I wrote the css exactly how it's supposed to be written on my site, and my homepage for my browser; that css will not change. Why do you think the change is permanent? Did you talk to someone from mozilla?? I can't seem to get a hold of them, because there is no live chat. If you have found a way, let me know okay?

more options

Hi jjalarie, here is a link to the article about border-radius and how after Firefox 12, you need to use border-radius instead of -moz-border-radius: https://developer.mozilla.org/en/CSS/border-radius.

If it's not working, could you post a link to your site so we can take a look?


To save some scrolling, the note about Firefox 13+ is in this section: https://developer.mozilla.org/en/CSS/border-radius#Gecko_notes "Support for the prefixed version (-moz-border-radius) was removed in Gecko 13.0 (Firefox 13.0 / Thunderbird 13.0) ."

글쓴이 jscher2000 - Support Volunteer 수정일시

more options

I have both attributes, the -moz-border-radius and the border-radius in my stylesheets. I don't see what your problem is.

more options

You can try to reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.

  • Press and hold Shift and left-click the Reload button.
  • Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
  • Press "Cmd + Shift + R" (MAC)

Can you post a link for us the check?

more options

Surely this is an issue to do with the ordering of your prefixed attribute declarations and the final CSS3 specifition attribute, I use this order with the final CSS3 attribute last:

-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;

Never had any issue with this in any FF version and I'm debugging CSS code every day on every version of FF since V2

  1. 1
  2. 2