我在CSS中亵渎,我不知道什么。我需要将HTML代码和CSS格式化放在iPhone程序的同一个字符串对象中。
我有HTML代码和CSS代码,但我不知道如何混合在一起。你可以帮帮我吗?
<html> <head> <link type="text/css" href="./exemple.css" rel="stylesheet" media="all" /> </head> <body> <p> <span class="title">La super bonne</span> <span class="author">proposée par Jérém</span> </p> </body> </html>
CSS样式:
.title { color: blue; text-decoration: bold; text-size: 1em; } .author { color: gray; }
解决方法
<html> <head> <style type="text/css"> .title { color: blue; text-decoration: bold; text-size: 1em; } .author { color: gray; } </style> </head> <body> <p> <span class="title">La super bonne</span> <span class="author">proposée par Jérém</span> </p> </body> </html>
在旁注中,这样做会更容易做到this。