Jump to content
php.lv forumi

Kā laij izveido izvelni?


keka

Recommended Posts

Te pat forumā jau ir bijis par šo tēmu runa un tieši par gign mājaslapu.

Un vispār kārtējo reizi neredzu problēmu! Grūti tev apskatīties gign.lv sourci?

a {
 display: block;
 float: left;
 background-color: #FFF;
}
a:hover {
 background-color: #000;
}

Link to comment
Share on other sites

<html>
       <head>
               <style>
                       a.menu {
                                 color: white;
                                 float: left;
                                 background-color: green;
                       }
                       a.menu:hover {
                                 color: red;      
                                 background-color: silver;
                       }
               </style>
       </head>
       <body>
               <div align="center"><table width="90%" border="0">
                               <tr>
                                       <td>
                                               <a class="menu" href="#">Links 1</a>
                                       </td>
                                       <td>
                                               <a class="menu" href="#">Links 1</a>
                                       </td>
                                       <td>
                                               <a class="menu" href="#">Links 1</a>
                                       </td>
                                <td>
                                               <a class="menu" href="#">Links 1</a>
                                       </td>
                               </tr>
                       </table></div>
       </body>

Saprasties? =]

Link to comment
Share on other sites

×
×
  • Create New...