我正在编写一个打开本地 html 的 webview。我正在使用这个 HTML5WebView。但这对我来说还不够强大。html 中的 CSS 效果很好,但“.css”文件中的 CSS 效果不佳。
例如,“.css”文件中的“height”属性不能在html中实现。所以我必须再次在 html 中设置“height”属性才能使其工作。像这样:
我的css文件:
.header{
width:100%;
height:80px;
color:#FFF;
font-size:20px;
}
.header_title{
position:fixed;
*position:absolute;
left:0px;
top:0px;
opacity=1;
filter:alpha(opacity=100);
}
.header_title_btn{
width:50%;
height:100%;
position:relative;
filter:alpha(opacity=100);
opacity=1;
text-align:center;
}
.lineMiddle{
height:80px;
line-height:80px;
}
我的html文件:
我想知道是否有一些方法可以解决这个问题,因为我有很多 html 和 CSS 文件。