2013-05-15 76 views
1

我想在我的Index.HTML的段落中加粗和顏色某些詞語(或使其斜體,不同大小等)。Div容器中的HTML + CSS樣式/文本格式

但通常的格式標記(HTML)不起作用。

我有一個StyleSheet包含我的網站的所有樣式和屬性,但我只想在段落中更改三個單詞(例如)。我該怎麼做?

的index.html:

<div id="da-slider" class="da-slider"> 
    <div class="da-slide"> 
     <h2>This is the Heading</h2> 
     <p>And HERE is where I want to make this word BOLD and this WORD in a different color, for example</p> 
     <a href="#" class="da-link">Read more</a> 
    <div class="da-img"><img src="img/pp-slider/imac.png" alt="image01" /></div> 
</div> 

回答

4

檢查此琴:here

這是一個小例子。

我使用<strong>Word</strong>使其變爲粗體,但<b>Word</b>會做的很好。

使用<i></i>使詞語斜體。我也用<span class="color">Word</span>使它變成藍色。

1

包裹在<span>,然後的話樣式應用於他們

HTML:

<p>And <span>HERE</span> is where I want to make this word <span>BOLD</span> and this <span>WORD</span> in a different color, for example</p> 

CSS:

#da-slider p span{ 
    color:#F00; 
    font-weight:bold; 
} 

看到這個Fiddle

1

用法:

Bold : <b> 
Italic : <i> 
Underline : <u> 

例子:

要使文本<b>BOLD</b>

要使文本<b><i>BOLD and ITALIC</i></b>

你也可以使用CSS用跨度:

例子:

這使得文本<span>Bold and italic</span>

用下面的CSS:

span { 
    font-weight: bold; 
    font-style: italic; 
} 
1

您可以通過預先定義的HTML標記您想要的結果強,我, em,或者您可以設置單個類以分配給不同的元素。

這裏是您可以保存的文件&嘗試...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
     <title>Untitled Document</title> 
     <style> 
      body { 
       font-size:100%; 
       font-family:arial; 
      } 

      .boldme { 
       font-weight:bold; 
      } 

      .italicme { 
       font-style:italic; 
      } 

      .iambigger { 
       font-size:150%; 
      } 

      .colormered { 
       color:#FF0000; 
      } 
     </style> 
    </head> 
<body> 
    <div class="da-slide"> 
     <h2>This is the Heading</h2> 
     <p>And <span class="iambigger">HERE</span> is where I want to make <span class="italicme">this</span> word <span class="boldme">BOLD</span> and this <span class="colormered">WORD</span> in a different color, for example.</p> 
     <p>And by the way, <span class="boldme italicme iambigger colormered">I can have combinations of all</span></p> 
     <a href="#" class="da-link">Read more</a> 
     <div class="da-img"> 
      <img src="img/pp-slider/imac.png" alt="image01" /> 
     </div> 
    </div> 
</body> 
</html> 

讓我知道如果你需要知道別的...

0

這裏是Solution

的HTML:

<div id="da-slider" class="da-slider"> 
    <div class="da-slide"> 
     <h2>This is the Heading</h2> 
     <p>And HERE is where I want to make this word <span>BOLD</span> and this <span>WORD</span> in a different color, for example</p> 
     <a href="#" class="da-link">Read more</a> 
    <div class="da-img"><img src="img/pp-slider/imac.png" alt="image01" /></div> 
</div> 
</div> 

的CSS:

.da-slide p span { 
    font-weight: bold; 
} 

希望這有助於。