Toon posts:

[CSS] border probleem in een table

Pagina: 1
Acties:

Verwijderd

Topicstarter
ik zit met deze website, alles lijkt het goed te doen, behalve dat de border niet werkt, waarom niet :'( ? kan iemand me hiermee helpen?

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<html><head>

<style type="text/css">
          body {
            background-color: #FFFFFF;
            margin-top: 0px;
            margin-left: 0px;
            margin-right: 0px;
            margin-bottom: 0px;
          }
          
          table.index {
            border: none;
            cell-spacing: none;
          }
          
          table.layout { 
            border: 1px;
            background-color: #FAFAFA;
            border-color: #CCCCCC;
          }
          
          p { 
            font: 10px verdana
          }
</style>

</head><body>

<table class="index" width="100%" height="781">
  <tr>
    <td align="center" valign="top">
    
    <table class="layout" width="800" height="700">
      <tr>
        <td width="800" height="20"><p>testing1, testing1</p></td>
      </tr>
      <tr>
        <td width="800" height="680" align="center" valign="top"><p>testing2, testing2</p></td>
      </tr>
    </table>
    
    </td>
  </tr>
</table>

</body></html>


alvast bedankt

Verwijderd

Cascading Stylesheet:
1
border: 1px solid black;

  • BetuweKees
  • Registratie: Januari 2003
  • Laatst online: 15-05 20:44

BetuweKees

Flipje uit Tiel

border commando is niet compleet.. moet het doen als in "border: dikte soort kleur;"
code:
1
border: 1px solid black;

dus bij voorbeeld..

Through meditation I program my heart to beat breakbeats and hum basslines on exhalation -Blackalicious || *BetuweKees was AFK; op de fiets richting China en verder


Verwijderd

http://www.w3.org/TR/CSS2/box.html#propdef-border-style
Since the initial value of the border styles is 'none', no borders will be visible unless the border style is set.
Enne... cell-spacing :?

[ Voor 11% gewijzigd door Verwijderd op 13-10-2003 22:30 ]