相关疑难解决方法(0)

如何在IE中制作背景大小的工作?

是否有任何已知的方法使CSS样式background-size在IE中工作?

css internet-explorer

188
推荐指数
5
解决办法
25万
查看次数

IE 8:后台大小修复

我试图向IE添加背景大小,但它根本不起作用:

HTML

<h2 id="news">Notícias <img src="white-marker.png" alt="" /></h2>
Run Code Online (Sandbox Code Playgroud)

CSS:

div#content h2#news {
    background: url('../images/news-background.jpg') no-repeat;
    background-size: 100%;
    border-radius: 20px;
    color: #fff;
    margin: 20px 0 0 20px;
    padding: 8px 20px;
    width: 90%;
    -moz-background-size: 100%;
    -moz-border-radius: 20px;
    -webkit-background-size: 100%;
    -webkit-border-radius: 20px;
}
Run Code Online (Sandbox Code Playgroud)

过滤器有什么问题?

css xhtml filter background-image width

138
推荐指数
4
解决办法
30万
查看次数

标签 统计

css ×2

background-image ×1

filter ×1

internet-explorer ×1

width ×1

xhtml ×1