当在Chrome浏览器中双击primefaces饼图时,它显示深蓝色阴影。但是在mozilla firefox和IE中它没有发生。那么如何避免铬中的这种深蓝色?
primefaces pie chart in chrome browser it shows dark blue color shadow. when double clicking
答案 0 :(得分:1)
“深蓝色阴影”
是否突出显示chrome会将其应用于所选区域,并且为了防止在饼图的画布区域上突出显示,您将使用以下CSS:
<强> CSS 强>
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
<强> XHTML 强>
<p:pieChart styleClass="unselectable" />
这是在线Demo。
另请参阅: