answersLogoWhite

0

Cell padding is used in table and in div tags. You can add to create space around images and words. example: <table cellpadding="0" cellspacing="0">

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What do you use to configure the cell padding of a table?

To configure the cell padding of an HTML table using CSS, you use the CSS padding property (or the padding-top, padding-right, padding-bottom, and padding-left properties) on table cells. For example, if I wanted 10px of cellpadding, I would have the following CSS rule: td { padding: 10px; }


What is difference between cellpading and cellspacing in HTML?

Cell Padding is the Padding from the outside of the cell to the inner text. If you added a border to the cell then added cell padding then you'd notice it slowly moving further from the border the higher the padding got. Cell Spacing is the gap between the cells. If you then added a border to all cells then to the table you would notice the cells moving further away from each other and as a result from the outer border of the table.


What is CSS padding?

Padding is the inner space between the border and content of an HTML tag.The code below would have a small space between the border and content of the :Content hereThis code would have a large space between the border and content:Content here


What role do margins and padding play in HTML design?

They help keep spacing around things and keep things apart. For example, padding inside a cell in a table, will put space between the edge of the cell and the text in the cell. Margins can be put around things like paragraphs, to create extra space around them.


What Is The Code To Show An Html A Text?

&lt;code&gt;&lt;code&gt;HTML TEXT HERE&lt;/code&gt;&lt;/code&gt;


HTML code has a limit of 10 webpages per site?

No! HTML is simply code. You can write 1 million pages of HTML code if you want. HTML is not a program. Its code. Now you may have a program that uses HTML code and that program has limitations. But not HTML itself.


How do you pull up your HTML code?

You can pull up your HTML code by right clicking the code and hitting, View Source. This will open the HTML code and you can format it.


What Pokemon game has a HTML code?

No game has HTML code because HTML is only for web design.


What is the name given to a piece of HTML code?

There is no specific name to a piece of HTML code. It is just an HTML code written in markup language.


Can you see the HTML code in Kompozer?

Yes, you can see the HTML code in Kompozer.


What are the advantages and dsiadvantages of HTML converters?

there is not many disadvantages of HTML code editors but there are allot of advantages. HTML code editors can be helpful to others just as much as to them self's if not more. HTML code editors usually design websites and or web pages like the one this answer is on. the disadvantages all depend on the HTML code editor. example of a HTML code editor that has a disadvantage would be a HTML code editor that over advertises. Hope this helps &lt;:


How do you make a space between image and text in html?

You use an attribute called padding. Here is an example for you to modify as needed for your site: &lt;img src="image.jpg" width="100" border="0" height="100" style="PADDING-LEFT: 5px"; "PADDING-RIGHT: 5px"; "PADDING-TOP: 5px"; "PADDING-BOTTOM: 5px" alt="My Image" /&gt;.