HTML CSS

摘要:HTML CSS

HTML:

=======================================

 

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<style>
th {
  background-color: #07B133;
color: #ffffff; 
}
 
</head>
<body>
  <table border=1 class="mtable"  id="tb-border">
    <th>Color Code</th>
    <tr>
        <td>aaaaaa</td>
    </tr>
 
  </table>
</body>
</html>
 
 
 
CSS:
=======================================
table.mtable 
 
td{
  background:#005cb9 
    url(http://cdn.computerhope.com/backbar.jpg)
    repeat-x left top;
  color:#fff;
  font-weight:700;
  padding:5px
}
 
 
#tb-border {
width: 50%;
border-collapse: collapse;
margin: 10px;
}