answersLogoWhite

0

It is the space between the cell border and the text or images inside the cell. The number provided is the space in pixels. In modern HTML, it is set using CSS declarations.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is cell padding in HTML code?

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">


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 helps you create an HTML file by inserting HTML codes for you as you work?

Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.Special HTML editor programs, like Dreamweaver.


Is HTML protocol or not?

HTML is a protocol


What attribute of the table tag controls the table alignment?

The attribute the controls the alignment of a table is the "align" attribute. It's possible values are left, right, and center. This attribute sets the alignment of the table in relation to the rest of the document. <table align="center"> .... </table> This attribute was deprecated in the HTML 4.01. That means that you can use it in HTML 4, and expect it to work in the browsers, but there are better ways of achieving your goal. (CSS) If you're using HTML 4.01 Strict as your doctype, then use of align is obsolete (meaning the browsers no longer have to support it and its use is prohibited.) The same goes for XHTML 1.0 Strict, and the current draft of HTML 5. Instead, use CSS margins and floats.

Related Questions

Create space between text and cell borders in a table?

If you are using HTML, use the Cellpadding attribute in TD tag of the cells you want or in the Table Tag if you want to apply it to the full table. You can use style sheets to do it too, or if you are using something like Dreamweaver, there are options in the settings to adjust the cellpadding.


What is cell padding in HTML code?

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">


What is a cellpadding?

the space between cell content and cell border.


What is is difference between cellspaging cellpadding?

Cellpadding adds space all around a table cell - so if you set cellpadding to 2 pixels, you're adding 4 pixels between the data in neighboring cells. But cellspacing controls the space between the cells, so specifying 2 will add just two pixels between the cells.


Differentiate HTML tag from an HTML documents?

HTML tags are used to delimit HTML elements inside an HTML document.


How do you prepare an HTML?

The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>


Web designing interview questions?

I am send u some common question in web design interview.I hope its help you..Whats is the difference between cellspacing and cellpadding?.If a page has to be loaded over all frames in window, what should be the value of TARGET attributes?List out tags that are support exclusively by IE and Netscape.What tags are used to embed one HTML page inside another HTML page (without using frames)?In dreamweaver what is used to apply same layout to my pages.Which HTML tag is used to define an internal style sheet?How do you define an inline style?


How do you put HTML in PHP?

Its done exactly the same as when you put it in an HTML file. There are 2 ways you can do it: <html> <?php // php stuff ?> </html> Or you can do it like this: <?php echo "<html>"; // php stuff echo "</html>"; ?>


True or false the latest reformulated version of HTML is HTML 1.0?

This is false, the newest version of HTML is HTML 5.


Is html a replacement for xhtml?

No. HTML existed before XHTML. XHTML combines XML and HTML, so it is an advancement on HTML.


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; }


How do you submit an HTML?

I don't understand exactly what you mean by that but if you simply save a file with the extension .HTML it will be a HTML file that you can publish online. for eg <HTML> <body> This is my HTML page </body> </HTML> will simply show "This is my HTML page" on your web browser hope i helped