---
title: "Motsvariget/alternativ till tabeller?"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/145199-motsvariget-alternativ-till-tabeller"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "andreasN"
published: "2006-04-07T14:47:07.000Z"
updated: "2006-04-07T17:02:51.000Z"
replies: 2
views: 389
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/html-css/145199-motsvariget-alternativ-till-tabeller"
---

# Motsvariget/alternativ till tabeller?

## #1 — andreasN, 2006-04-07T14:47Z

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?

Permalänk: https://www.webforum.nu/p/145199

## #2 — tanten, 2006-04-07T15:26Z

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

Permalänk: https://www.webforum.nu/p/1794661

## #3 — andreasN, 2006-04-07T17:02Z

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

Permalänk: https://www.webforum.nu/p/1794688

---

Tråden på webben: https://www.webforum.nu/amne/html-css/145199-motsvariget-alternativ-till-tabeller
