<< < 2 3 4 5 6 7 8 9 10 > >>   Sort: Rank

HTML Table Row 'tr' Tag/Element
What Is a "tr" Tag/Element? A "tr" element is a special element that can only be used as a sub-element of a "table" element. A "tr" element defines a row in a table. Here are basic rules about "tr" elements: "tr" elements are special elements only valid inside "table" elements. "tr" elements can not...
2017-05-20, 1267🔥, 0💬

'cellpadding' - Padding Spaces in HTML Table Cell
How To Control Padding Spaces within a Table Cell? Cell padding spaces are spaces between cell inner borders and cell content. By default, browsers give cell padding spaces of 1 pixel. If you want to control cell padding spaces within a table cell, you need to use the "cellpadding" attribute, which ...
2017-05-13, 2625🔥, 0💬

Creating HTML Table Borders
How To Create Table Borders? There are two sets of borders within a table: Outer Borders - Borders that around the outer edges of the table. Inner Borders - Borders between table cells. If you want to create table outer borders and inner borders, you can use the "border" attribute, which offers two ...
2017-05-13, 1872🔥, 0💬

HTML 'table' Element Attributes
What Are the Attributes of a "table" Element? A "table" element may have the following commonly used attributes: "summary" - Specifies a text string as the summary of the table. "width" - Specifies the width of the table. "border" - Specifies the border width. "frame" - Specifies how the outer borde...
2017-05-13, 1538🔥, 0💬

'cellspacing' - White Spaces between HTML Table Cells
How To Control White Spaces between Table Cells? White spaces between cells refer to the vertical space between a upper cell and a lower cell in a table column, and the horizontal space between a left cell and a right cell in a table row. If inner borders are turned on, white spaces between cells ap...
2017-05-13, 1471🔥, 0💬

'frame' - Controlling HTML Table Borders
How To Turn On Some Parts of Table Outer Borders? If you don't want to turn all 4 edges of outer borders in a table, you need to use the "frame" attribute, which offer the following options: &lt;table border="1" frame="border"&gt; - Turns on all 4 edges. &lt;table border="1" frame="box"&...
2017-05-13, 1428🔥, 0💬

Missing Cells in HTML Table Row
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most browsers will provide empty columns to the end of the row to make up the missing columns. For example, if your XHTML document has a table with the first row having 2 columns, and the second row having 3 co...
2017-05-05, 3607🔥, 0💬

'valign' - Vertical Alignment in HTML Table
How To Control Vertical Alignment? By default, text in all table cells are aligned to the top vertically. If you want to control vertical alignment yourself, you need to use the "valign" attribute in a "tr" element or a "td" element: &lt;tr valign="top|middle|bottom"& ;gt;- Set vertical align...
2017-05-05, 2981🔥, 0💬

'th' - Adding HTML Table Headers
How To Add Column Headers to a Table? If you want to add column headers to a table, you need to use "th" elements instead of "td" elements in the first row of the table. "th" elements are displayed in bold and centered by default. Below is a tutorial example of adding column headers to a table: &...
2017-05-05, 2832🔥, 0💬

'align' - Horizontal Alignment HTML Tables
How To Control Horizontal Alignment in Table Cells? By default, text in all table cells are aligned to the left horizontally. If you want to control horizontal alignment yourself, you need to use the "align" attribute in a "tr" element or a "td" element: &lt;tr align="left|center|right"& gt;...
2017-05-05, 2420🔥, 0💬

'width' for HTML Table Widths
How To Control Table Widths? Usually, browsers will calculate the table width based on the content widths of table cells. If you want to control the width of a table, you need to use the "width" attribute, which allows you to set the table width in pixels or percentages of the parent element width. ...
2017-05-05, 1593🔥, 0💬

HTML 'em' Tag/Element
What Is an HTML "em" Tag/Element? An "em" element is an inline element that you can use to specify text with a normal emphasis. Here are basic rules about "em" elements: "em" elements are inline elements. "em" elements can not be used at block level. Contents of "em" elements will be displayed in it...
2017-04-28, 2185🔥, 0💬

HTML 'sub' and 'sup' Tag/Element
What Are HTML "sub" and "sup" Tags/Elements? "sub" and "sup" elements are inline elements that you can use to specify text to be treated as subscript and superscript respectively. Here are basic rules about "sub" and "sup" elements: "sub" and "sup" elements are inline elements. "sub" and "sup" eleme...
2017-04-28, 1575🔥, 0💬

HTML 'code' Tag/Element
What Is an HTML "code" Tag/Element? An "code" element is an inline element that you can use to specify text to be treated as computer code. Here are basic rules about "code" elements: "code" elements are inline elements. "code" elements can not be used at block level. Contents of "code" elements wil...
2017-04-28, 1530🔥, 0💬

HTML 'strong' Tag/Element
What Is an HTML "strong" Tag/Element? A "strong" element is an inline element that you can use to specify text with a strong emphasis. Here are basic rules about "strong" elements: "strong" elements are inline elements. "strong" elements can not be used at block level. Contents of "strong" elements ...
2017-04-28, 1453🔥, 0💬

HTML 'del' and 'ins' Tags/Elements
What Are HTML "del" and "ins" Tags/Elements? "del" and "ins" elements are inline elements that you can use to specify text to be treated as deleted text and inserted text respectively. Here are basic rules about "del" and "ins" elements: "del" and "ins" elements are inline elements. "del" and "ins" ...
2017-04-28, 1318🔥, 0💬

Creating Nested HTML Tables
How To Create Nested Tables? You can create nested tables by including a child table inside a cell of the parent table. Below is a tutorial example of nested tables: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/D TD/...
2017-04-22, 1711🔥, 0💬

HTML Forms and Input Fields
Where to find tutorials of introduction to HTML Forms and Input Fields? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML Forms and Input Fields. Clear answers are provided with tutorial exercises on forms and input fields: f...
2017-04-22, 1626🔥, 0💬

HTML Table 'caption' Tag/Element
What Is a "caption" Tag/Element? A "caption" element is an inline element that you can use to define the caption text of a table. Browsers will display caption above the table and aligned to the center. Here are basic rules about "caption" elements: "caption" elements are inline elements. A "caption...
2017-04-22, 1375🔥, 0💬

HTML 'form' Element Attributes
What Are the Attributes of a "form" Element? There are 3 commonly used attributes for a "form" element: "action" - Required attribute. Used to specify the URL of the form processing program. "method" - Optional attribute. Used to specify the form submission method: "get" or "post". method="get" is t...
2017-04-19, 1406🔥, 0💬

Different Types of HTML 'input' Elements
How Many Input Types Are Supported by "input" Elements? There are 10 input types are supported by "input" elements: &lt;input type="text"&gt; - Input text box. This is also the default type. &lt;input type="password"&gt; - Password input box, which works like an input text box, but i...
2017-04-19, 1386🔥, 0💬

Using HTML 'text' Input Fields
How To Use "text" Input Fields? A "text" input field is defined as &lt;input type="text" .../&gt;. A "test" input field can be used to create input field to allow viewers to enter text strings or numbers. There are other attributes you may need to use for a "text" input field: name="fieldNam...
2017-04-19, 1376🔥, 0💬

HTML 'form' Tag/Element
What Is a "form" Tag/Element? A "form" element is a block element that you can use to define an input form with input fields. Here are basic rules about a "form" element: "form" elements are block elements. A "form" element can have empty content. A "form" element can have block elements as sub-elem...
2017-04-19, 1282🔥, 0💬

HTML 'input' Tag/Element
What Is an "input" Tag/Element? An "input" element is an inline element that can used inside a "form" element to define an input field. Here are basic rules about an "input" elements: An "input" element is an inline element. It can not be used directly inside a "form" element. It can only be used in...
2017-04-19, 1272🔥, 0💬

<< < 2 3 4 5 6 7 8 9 10 > >>   Sort: Rank