MENU
 
Home
Nieuwsbrief
GC in de media
SiteMap
 
Tips en Tricks
Excel
Word
Photoshop
PowerPoint
Surf Tips
Gmail
Android
iPad
Excel ClipTips
 
cursus Office 2016
Access
Excel
Outlook
PowerPoint
Word
 
cursus Office 2013
Excel
PowerPoint
Word
Nieuw in Excel 2013
Nieuw in Word 2013
Nieuw in PowerPoint 2013
 
cursus Office 2010
Access
Nieuw in Excel 2010
Excel automatiseren
Excel
OneNote
Outlook
PowerPoint
Word
 
cursus Office 2007
Access
Excel
Outlook
PowerPoint
Publisher
Visio
Word
 
cursus Office
2000-2002-2003-XP
Access
Excel
PowerPoint
Outlook
Word
 
cursus Photoshop
CC -3D
Animatie
CS6
CS5
CS4
CS2 - CS3
Lightroom 3
Elements 6
Mask Pro
Nik Collection
 
cursus Dreamweaver
CS3
 
cursus Illustrator
CS4
 
cursus Flash
CS4
 
cursus Fireworks
CS4
 
cursus Paint Shop Pro
X en X2
 
cursus Premiere
Elements 7-8
 
cursus Joomla
Joomla 1.5
 
Sociale Netwerk sites
Facebook
LinkedIn
Twitter
 
iPad
Apps
 
Diversen
Celtx
CSS
DropBox
Firefox 3.6
GIMP
Internet Explorer 9
LIME
Linux
OpenSUZE
PREZI
ProShow Producer
YouTube
 
cursus Google
Agenda
Analytics
Gmail
Zoeken
Picasa 3
SketchUp
Chrome
Street View
 
cursus Windows
Live Movie Maker
Windows 10
Windows 8
Windows 7
XP
Vista
 
cursus Office '97
Word
Excel
 
 
>

 

Cursus CSS   Index - vorige
       
Les 14    
 
Tabellen
Een tabel bestaat uit een aantal regels en kolommen.
Binnen HTML heet de tag <table> .. </table>.
De bijbehorende tags zijn <tr> en <td>.
Indien elke tabelregel 4 datacellen heeft, dan ontstaat er een tabel van twee regels en 4 kolommen.
Zie voorbeeld:

<table>
<tr>
<th>voornaam</th>
<th>achternaam</th>
<th class="savings">Woonpl</th>
</tr>
<tr>
<td>Peter</td>
<td>kelfkens</td>
<td>Best</td>
</tr>
<tr>
<td>Luit</td>
<td>Best</td>
<td>Heijen</td>
</tr>
<tr>
<td>Jos</td>
<td>Janssen</td>
<td>Eindhoven</td>
</tr>
<tr>
<td>Henny</td>
<td>Sluiters</td>
<td>Oirschot</td>
</tr>
</table>

 
Resultaat:
 

Nog een voorbeeld:

<TABLE>
<CAPTION>Dit is een eenvoudige 3x3 tabel</CAPTION>
<TR id="rij1">
   <TH>Kop 1      <TD>Cel 1        <TD>Cel 2
<TR id="rij2">
   <TH>Kop 2      <TD>Cel 3        <TD>Cel 4
<TR id="rij3">
   <TH>Kop 3      <TD>Cel 5        <TD>Cel 6
</TABLE>

En het resultaat met de zelfde CSS:

Tot slot de basisvorm van een website
De html:

<body>
<div id="kop">
<img src="..uw_logo.jpg" alt="logo" width="300" height="100"></div>
<!-- kop -->
<h1> Welkom op de website van... </h1>
<ul id="navigatie">
<li id= "huidig"><a href="home.html"> home</a></li>
<li><a href="#"> Link01</a></li>
<li><a href="#"> Link02</a></li>
<li><a href="#"> Link03</a></li>
<li><a href="home.html"> Link04</a></li>
</ul>
<div id="navigatievert">
  <ul>
    <li>Item01</li>
    <li>Item02</li>
    <li> Item03</li>
    <li> Item04</li>
  </ul>
</div> <!-- navigatie -->
<div id="inhoud">
<p>uw tekst</p>
  <p>&nbsp;</p>
</div> <!-- inhoud -->
<div id= "footer" >
<p> copyright 2010</p>
</div> /* einde footer*/
</body>
</html>

 
En de CSS:

<style type="text/css">
body{
background:#ff9 url(kleurverloop groen.jpg) top left repeat -y;
color:black;}
h1{text-align:center;}
#navigatie{
list-style:none; /*bullets weg */
margin:0;
padding:0; /* komt bij de li's */
width:80%;
}
#navigatie li {
text-align: center;
border-style   : solid none solid none;
border-width   : 1px;
border-color   : maroon; /* achtergrondkleur */
width          : 20%; /* toevoegen voor Internet Explorer */
padding: 5px 0px 3px 0;
background:orange;
float:left;
  }
#navigatie a:hover {
border-color   : #c60;
background:#008000;}
.huidig {background:#008000}
#navigatievert li {
text-align: center;
border-style   : solid none solid none;
border-width   : 1px;
border-color   : maroon; /* achtergrondkleur */
width          : 10em; /* toevoegen voor Internet Explorer */
padding: 5px 0px 3px 0;
background:green;
  }
#navigatievert a {
text-decoration: none;
  }
#navigatievert {
 background:#cc9; /*groen*/
 float:left;
 padding:5px;
 width:175px;} 
#inhoud {margin:0 0 0 200px; padding:2px 10px 2px 25px;}
#footer { height:auto;text-align:center; background: #FFC; clear:both; }
</style>
</head>

 
 
Index - vorige

copyright © 2012 - gratiscursus.be

>