padding

英[?p?d??] 美[?p?d??]

n.Padding; lining; redundant language; nonsense

v. To pad..., to add cushions (the present participle of pad); to walk, to walk lightly

left

英[left] 美[l?ft]

adj.Left, left; leftist

n.Left, left;[military] left wing;left wing, radical

adv.To the left; on the left

v.Leave (past tense and past participle of leave)

css padding-left property syntax

Function: Set the left padding of the element.

Description: This attribute sets the width of the left padding of the element. Left padding set on inline, non-replaced elements appears only to the left of the first inline box generated by the element.

Note: Negative values ??are not allowed. All major browsers support the padding-left attribute. The attribute value "inherit" is not supported in any version of Internet Explorer (including IE8).

css padding-left property example

<html>
<head>
<style type="text/css">
td {padding-left: 20px}
</style>
</head>

<body>
<table border="1">
<tr>
<td>
這個(gè)表格單元擁有左內(nèi)邊距。
</td>
</tr>
</table>
</body>

</html>

Run instance ?

Click the "Run instance" button to view the online instance