---
title: "TD height"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/68043-td-height"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "icaaq"
published: "2003-02-12T10:59:30.000Z"
updated: "2003-02-12T13:22:56.000Z"
replies: 2
views: 148
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/68043-td-height"
---

# TD height

## #1 — icaaq, 2003-02-12T10:59Z

Jag har fÃ¶ljande:

```
[red]
<table id="showmess" class="showmess" border="0">
	<tr>
		<td class="time"><p id=rad1>&nbsp;</p></td><td class="message"><p id=user1>&nbsp;</p></td>
	</tr>
</table>
[/red]
```

Och dessa klasser till CSS:n

```
[red]
table.showmess
{
	margin: 0px;
	width: 600px;
	background-color: gray;
}
td.time
{
	border-bottom: dotted 1px silver;
	border-right: dotted 1px silver;
	height: 16px;
	width: 30%;
	margin: 0px;
}
td.message
{
	border-bottom: dotted 1px silver;
	height: 16px;
	width: 70%;
	margin: 0px;
}
[/red]
```

men i min mozilla sÃ¥ blir inte raderna 16 px hÃ¶ga utan typ 25-30 px hÃ¶ga....hur ska jag Ã¥tgÃ¤rda detta?

mvh icaaq

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

## #2 — Flashes, 2003-02-12T11:43Z

Hur mycket bygger din P tag då?

Mvh
Jan-Olov

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

## #3 — dectgap, 2003-02-12T13:22Z

Använd ett inline-element (t ex \<span\>) istället för \<p\>.

```
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>

<head>
<title>xxx</title>

<style type="text/css">
table.showmess
{
	margin: 0px;
	width: 600px;
	background-color: gray;
}
td
{
	font: 10px Verdana, sans-serif;
	padding: 0 3px;
}
td.time
{
	border-bottom: dotted 1px silver;
	border-right: dotted 1px silver;
	height: 16px;
	width: 30%;
	margin: 0px;
}
td.message
{
	border-bottom: dotted 1px silver;
	height: 16px;
	width: 70%;
	margin: 0px;
}
</style>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>

<body>

<table id="showmess" class="showmess" border="0" cellspacing="0">
 <tr>
  <td class="time"><span id="rad1">Text</span></td>
  <td class="message"><span id="user1">Text</span></td>
 </tr>
</table>

</body>

</html>
```

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/68043-td-height
