代码示例:(标识:eg_csse_margin-left_percent)
<html>
<head>
<style type="text/css">
p.leftmargin
{
margin-left: 25%
}
</style>
</head>
<body>

<p>This is a paragraph with no margin specified</p>
<p class="leftmargin">This is a paragraph with a specified left margin</p>

</body>
</html>
运行结果: