Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$array[0] = "<input ...id='input1'>";
$array[1] = "<input ...id='input2'";
$array[3] = "<input ...id='input3'>";
shuffle($array);
$html = implode("", $array);
echo $html;
#input1 {
left: 10px;
top: 30px;
padding: 5px;
position: absolute;
}
#input2 {
left: 10px;
top: 20px;
padding: 5px;
position: absolute;
}
#input3 {
left: 10px;
top: 10px;
padding: 5px;
position: absolute;
}