FleyerShaver
Neues Mitglied
Ich hab früher meinen background immer im table tag mit background gemacht nun habe ich gesehen das das nicht valide ist. Wie kann ich das ändern damit es valide wird?
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
background-image:url(bildjpg);
Es ist aber immer ein anderes Bild was man als background der einzelnen tabellen benutzt.
<table style="background-image:url(dasbild.jpg);">
<?php
$bilder = array('1.gif', '2.gif', '3.gif');
$rand = rand($bilder) //platzhalter, keine existierende funktion
echo '<table style="background-image:url('.$rand.');">';
?>
hab ich was verpasst, oder wie kommst du auf zufällig?