File size: 1,054 Bytes
158b61b |
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 48 49 50 51 52 53 54 55 56 57 58 59 60 |
div.enclosing {
border-collapse:collapse;
float: left;
border: 0px;
margin: 0px;
padding: 0px;
}
div.leaf {
border-collapse:collapse;
border:1px solid black;
margin:2px;
padding:0px;
font-weight: normal;
background-color: white;
}
div.empty {
border-collapse:collapse;
border:1px solid transparent;
border-left:0px;
border-right:0px;
margin:2px;
margin-left:0px;
margin-right:0px;
padding:0px;
font-weight: normal;
}
div.continued {
border-collapse:collapse;
border:1px solid black;
border-left: 0px;
border-right: 0px;
margin:2px;
margin-left: 0px;
margin-right: 0px;
padding: 0px;
padding-top: 0px;
font-weight: normal;
background-color: white;
}
div.opening {
border-collapse:collapse;
border:1px solid black;
border-right: 0px;
margin:2px;
margin-right: 0px;
padding: 0px;
font-weight: normal;
background-color: white;
}
div.closing {
border-collapse:collapse;
border:1px solid black;
border-left: 0px;
margin:2px;
margin-left: 0px;
padding: 0px;
font-weight: normal;
background-color: white;
}
|