p標簽中文字如何設置成多種顏色?
方法1、 <div class="contain"> <p style="font-size:30px;color:orange">p標簽設百置字體顏色</p> </div> 方法2、 <style> .contain p{ font-size:30px; color:orange; } </style> <div class="contain"> <p>p標簽設置字體顏色1</p> </div>擴展資料: 在HTML文檔中使用style屬性: <h1 style="color:blue;text-align:center">This is a header</h1> <p style="color:red">This is a paragraph.</p> 定義度和用法 style屬性規定元素的行內樣式(inline style) style屬性將覆蓋任何全局的樣式設定,例如在<style>標簽或在外部內樣式表中規定的樣式。 語法 <element style="value"> 屬性值容 值:style_definition; 描述:一個或多個由分號分隔的CSS屬性和值。 ---------河南新華