/    Sign up×
Community /Pin to ProfileBookmark

How to get my table on the top?

How can i get my table to align exactly along the top? With no empty space?

Here is my code

[code=php]
<html>
<body background=”test.jpg”>

<table border=”1″ width=750 height=600 align=center>
<tr>
<td>100</td>
</tr>
</table>

</body>
</html>
[/code]

[url]http://img215.imageshack.us/img215/1554/wd1yg.jpg[/url]

here is a screenshot

Thanks ahead of time

to post a comment
HTML

3 Comments(s)

Copy linkTweet thisAlerts:
@the_treeMay 24.2006 — And that kids, is why presentational HTML is just irritating.[code=html]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>
One big table.
</title>
<style type="text/css">
<!--
body{
margin: 0;
padding: 0;
background: url(test.jpg) repeat green;
text-align: center;
}
table#mrtable{
width: 750px;
height: 600px;
text-align: center;
table-layout: auto;
margin: auto;
border: 1px solid #555;
}
-->
</style>
</head>
<body>
<table id="mrtable">
<tr>
<td>
foobar
</td>
</tr>
</table>
</body>
</html>[/code]
Copy linkTweet thisAlerts:
@noslenwerdauthorMay 24.2006 — great thank you!

what if i just want the table centered.. but not the text?
Copy linkTweet thisAlerts:
@ray326May 24.2006 — td { text-align: left }
×

Success!

Help @noslenwerd spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,
)...