Use background to highlight title text : Title section « CSS Controls « HTML / CSS






Use background to highlight title text

  


<!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" xml:lang="en" lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Headings</title>
  <style type="text/css" media="screen">
  #divID h1 {
    font-size: 24px;
    color: #fff;
    padding: 4px;
    background: #696;
  }
  </style>
</head>

<body>

<div id="divID">
  <h1>This is the Title of this page.</h1>
</div>

</body>
</html>

   
  








Related examples in the same category

1.Underlined title
2.Add background image to title text
3.Add no repeat icon to title text
4.Title format: font-family: Arial, sans-serif;color: #369;
5.Add border line to title text
6.Title section
7.Set line height for titled section
8.Set font family for titled section
9.Set title letter space for titled section
10.Change title font style for titled section
11.Letter drop for titled section
12.Titled section with justified alignment
13.Align title to the center
14.Text transformation for title
15.Set title size to small-caps
16.Paragraph indent for titled section
17.Place contact link list to the right top
18.Adding shading to top bar
19.Top links
20.Place language selection, about and contact information on the very top of the page