PHP ver gevorderde |
|
BODY, table
{
background-color: #CCFFFF;
background-image: ...
background-repeat: y;
background-position: center top;
background-attachment: fixed;
}
dan moet je niets met class enz doen
BODY, table { background-color: #CCFFFF; background-image: ... background-repeat: y; background-position: center top; background-attachment: fixed; } dan moet je niets met class enz doen
of 2de mogelijkheid
tabel
{
background-color: #CCFFFF;
background-image: ...
background-repeat: y;
background-position: center top;
background-attachment: fixed;
}
<table class="tabel>...
tabel { background-color: #CCFFFF; background-image: ... background-repeat: y; background-position: center top; background-attachment: fixed; } <table class="tabel>...
|