webForumDet fria alternativet

Motsvariget/alternativ till tabeller?

HTML & CSS

2 svar · 381 visningar · startad av andreasN

Medlem sedan jan. 200624 inlägg
Frågan#1

Finns det egentligen någon likvärdig motsvarighet eller alternativ till att använda tabeller för visning av bilder i horisontell/vertikal visning? kör just nu vanliga hederliga tabeller i min CSS-baserade sida (i divarna), men kan man slippa tabellerna helt och få en likvärdig funktion?

Medlem sedan nov. 20051 596 inlägg
#2

Den mig veterligt enklaste grunden för detta är

<style type="text/css">
	<!--
	#bildbox1{
	width: 650px;
	height: auto;
		}
	img{
        padding: 5px;
	float: left;
		}
	#bildbox2{
	width: 170px;
	height: auto;
		}
	-->
	</style>
</head>

<body>
<div id="bildbox1"><p>
<img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" />
<img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" />
<img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" />
<img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" />
</p></div>
<div id="bildbox2"><p>
<img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" />
<img src="" width="150" height="150" alt="" /><img src="" width="150" height="150" alt="" />
</p></div>
</body>
</html>

du behöver inte ha med height heller

Medlem sedan jan. 200624 inlägg
#3

Okej! ska testa och se hur det funkar - tack för tipset.

257 ms totalt · 4 externa anrop · v20260731065814-full.6fe65c25
123 ms — deklarationer (db)
0 ms — hämta statistik (cache)
130 ms — hämta tråd, inlägg och bilagor (db)
121 ms — ändringar (db)