简体   繁体   中英

box shadow + border-radius on IE not working

i have a very strange bug on ie 11 on windows 8.1 64 bit. the box-shadow on div with border-radius set is different from the box-shadow on div WITHOUT any border-radius set (

exemple :

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
.switchbtn1.first {border-right:none;border-radius:4px 0 0 4px;}
.switchbtn1.last {border-left:none;border-radius:0 4px 4px 0;}
.switchbtn1 {
  font-size:14px;
  line-height:14px;
  padding:3px 15px 6px;
  border:1px solid #E8BA66;
  float:left;
  box-shadow: 0px 3px 7px rgba(227, 168, 79, 0.6);
}
</style>
</head>

<body>  
  <div class="switchbtn1 first">un</div>
  <div class="switchbtn1">deux</div>
  <div class="switchbtn1 last">trois</div>        
</body>
</html>

this result in :

在此输入图像描述

you see that the box-shadow on the div with round-corner is different from the box-shadow on the div without round-corner ...

this bug not happen on all IE11. for exemple on IE11 on Windows 7 it's seam to not happen

any idea ?

this solution in works in ie11

div {
   -moz-border-radius: 10px; /* Firefox */
   -webkit-border-radius: 10px; /* Safari, Chrome */
   -khtml-border-radius: 10px; /* KHTML */
    border-radius: 10px; /* CSS3 */
   -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75);
   -moz-box-shadow:    4px 4px 5px 0px rgba(50, 50, 50, 0.75);
   box-shadow:         4px 4px 5px 0px rgba(50, 50, 50, 0.75);
   background:rgba(50, 50, 50);
}

Related to this? http://social.technet.microsoft.com/Forums/en-US/e262c912-5250-4996-acbc-41a8bcd11ba0/weird-ie-behavior-when-combining-drop-shadow-and-radius-css?forum=ieitprocurrentver

Answer suggests a graphics driver problem:

I turned off GPU rendering in the Advanced options and after I rebooted, the radius with drop shadow displays just fine....

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM