Oldalak

Sunday, April 20, 2014

Táblázat kezelás CSS-ben

     
 
     
<!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>Táblázat formázása</title>

<style>

table{
    border-style:dashed;
    border-top-left-radius:50px;}
  
td{border-top-left-radius:50px;
   border-left-color:#F0F;
   }
 
 
#td_center{border-bottom-right-radius:50px;
background-color:#060;
border-style:dotted;
border:ridge;
border-color:#F90;}

</style>

</head>

<body>

<table width="300" border="1" align="center">
  <tr>
    <td height="100" bgcolor="#FF0000">&nbsp;</td>
    <td bgcolor="#FFFF00">&nbsp;</td>
    <td bgcolor="#00FFFF">&nbsp;</td>
  </tr>
  <tr>
    <td id="td_center" height="100" colspan="3">&nbsp;</td>
  </tr>
  <tr>
    <td height="100">&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>


</body>
</html>

No comments:

Post a Comment