CSS 基本语法
1:加入CSS
1.1:<style type="text/css">
....
</style>
1.2:<link href = "style.css" rel="stylesheet" type="text/css">
//在IOS中,添加CSS文件
[m_ContentHTMLStr appendString:@"<title></title>"];
NSString *m_Filepath = [[NSBundlemainBundle] pathForResource:@"iZhongyi_Css"ofType:@"css"];
[m_ContentHTMLStr appendString:@"<link href = \""];
2:一个简单的应用
<p style="color:blue">要显示的信息</p>
3:
选择符号 { 样式声明1; 样式声明2 }
4:放置CSS的三个基本位置
4.1:直接放置到标签的Style属性中 <span style="color:blue"></span>
4.2:直接放置到<style></style>属性中
<style>
body
{
color:#ccccc;
}
p{ background-color:#FF00FF;}
</style>
4.3:直接放置到单独创建的以.css为扩展名称的文件中