Hi,

I have a table in my web page. I want to arrange the margins very close to sides (left, right, above, below). Because, table is wide i cant see some columns when i print it off.

How do i do this? Is it with HTML or CSS? If any, please code for it.

Thanks

this is very simple in HTML page there is style tag between head tag in that style define margin like this

<style type="text/css">
<!--
body {
	margin-left: 0px; /* write howmuch margin here */
	margin-top: 0px; /* write howmuch margin here */
	margin-right: 0px; /* write howmuch margin here */
	margin-bottom: 0px; /* write howmuch margin here */
}
-->
</style>

if you have any queries pls post here

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.