html - separating <th> elements in a table -
i trying make list of mobile phones website , actual problem @ screenshot here codes thml , css files <th>
s must separated border picture :
code:
<html> <head> <title>mobile phones</title> <link rel="stylesheet" href="styles.css"> </head> <h1>emobile</h1> <div id="wid"> <input type="text" name="manuf" value="დასახელება"></br> <select> <option value="none">მწარმოებელი</option> <option value="nokia">nokia</option> <option value="mercedes">samsung</option> <option value="sony">sony</option> </select> </br> ფილტრაცია ფასით</br> დან:<input type="number" name="from" value="0"> მდე:<input type="number" name="to_the" value="99999"> <input type="submit" value="submit"> </div> <table> <tr> <th><img src="2058.jpg"> </br> <h5>lumia 1520 black</h5></th> <th><img src="2058.jpg"> </br> <h5>lumia 1520 black</h5></th> </tr> </table> </html>
css
body { background-color: #66ccff } h1 { color: black; border-bottom:solid #2a1959; position:relative; top:30px; } select { width:173px; } tr,td { height=300px; width=200px; border:2px solid black; position: absolute; top: 20px; left: 30px; colspan="0" } table { height:500px; width:800px; border:3px solid black; position: absolute; top: 130px; left: 330px; z-index: -1; } #wid { width: 200px; height: 600px; border-right:solid #2a1959; position: relative; top: 50px; left: 50px; } #wid div { position: relative; top: 500px; left: 100px; }
Comments
Post a Comment