Proszę o pomoc w otrzymaniu tabelki poniżej - html , jeżeli byłaby możliwość prosiłbym o wyjaśnienie jakw html'u określić dokładne położenie tabelki oraz jej rozmiary
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
nie wiem czy dokładnie o to Ci chodziło ale sprawdź czy tak chciałeś:
<!DOCTYPE html>
<html>
<head>
<meta content="pl" http-equiv="Content-Language">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>tytul</title>
<style type="text/css">
.auto-style1 {
text-align: center; }
.auto-style2{
text-align: center;
background:url('../Pictures/207053_211168102228124_4326997_n.jpg'); }
table, th, td {
border: 1px solid black; }
</style>
</head>
<body>
<table style="width: 70%; height:80%" align="center"> <!-- tutaj masz okreslony rozmiar tabeli i jej polozenie width height align-->
<tr>
<td class="auto-style1"> </td>
<td class="auto-style2"><br><br><br><br><br><br><br><br></td>
<td class="auto-style1"> </td>
</tr>
<tr>
<td class="auto-style1" colspan="3">tutaj jakiś <br>bardzo <br>długi <br> przykładowy <br>będzie <br>tekst</td>
</tr>
</table>
</body>
</html>