我正在编写一个打开我本地html的webview。我正在使用this HTML5WebView。但它对我来说还不够强大。 html中的CSS运行良好,但“.css”文件中的CSS无法正常工作。
例如,“。css”文件中的属性“height”无法在html中实现。所以我必须再次在html中设置“height”属性才能使其正常工作。像这样:
.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和CSS文件。