我们如何使用适当的类名获得Style

时间:2015-01-19 06:46:49

标签: javascript html objective-c iphone

我希望用早期定义的样式替换所有类别的样式。我是iOS的新手。它是动态HTML。以任何格式呈现。我想用适当的样式<p class="p1"><span class="s1">已发送

替换
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta http-equiv="Content-Style-Type" content="text/css">
    <title></title>
    <meta name="Generator" content="Cocoa HTML Writer">
    <style type="text/css">
    p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 15.0px 'Helvetica Neue'}
    span.s1 {font-family: 'Helvetica Neue'; font-weight: normal; font-style: italic; font-size: 15.00px; text-decoration: underline}
    span.s2 {font-family: 'HelveticaNeue-BoldItalic'; font-weight: bold; font-style: italic; font-size: 15.00px; text-decoration: underline}
    span.s3 {font-family: 'Helvetica Neue'; font-weight: normal; font-style: normal; font-size: 15.00px}
    </style>
    </head>
    <body>
    <p class="p1"><span class="s1">Sent</span><span class="s2"> from </span><span class="s3">Zone</span><span class="s2"> Mail for </span><span class="s1">iOS</span></p>
    </body>
    </html>

1 个答案:

答案 0 :(得分:0)

您可以通过覆盖样式规则或仅重复使用相同的

来替换样式

1)覆盖样式规则

span.s1 {/*some css rules*/}

然后在代码文件中的某个稍后点

span.s1 {/*some different css rules*/}

s1类现在将拥有最新的规则

2)以不同的名称重用CSS规则

span.s1, span.s2, s3 {/* CSS rules */}

具有上述类别的所有元素将具有相同的CSS效果。

希望它有所帮助!