在iPad上的阴影剪辑

时间:2016-11-29 10:38:31

标签: css css3 ipad

我在iPad上遇到文字阴影剪辑问题。正如您在this image上看到的那样,阴影被剪裁了。这是该网站的link。我猜的麻烦是阴影大于线高?我试图添加溢出:可见,但没有任何改变。

非常感谢你的时间。

3 个答案:

答案 0 :(得分:0)

请添加样式表

.shadow {
 text-shadow: 0 0 65px rgba(0, 0, 0, 0);
}

答案 1 :(得分:0)

让它在Ipad上变得更暗

@media (max-width: 979px) and (min-width: 768px){
.shadow {
text-shadow: 0 0 65px rgba(0,0,0,.9);
overflow: auto;
}}

http://prntscr.com/dd5u5z

答案 2 :(得分:0)

我设法解决了这个问题。我添加了一个位置:relative和display:inline-block to shadow class。

.shadow { 
   text-shadow: 0 0 65px rgba(0, 0, 0, 0.4);
   display: inline-block;
   position: relative;
}

感谢所有参与的人。