样式:text-indent:2em
实现方法有两种:
1:通过HTML代码直接添加,代码如下:
1
|
< p style = "text-indent:2em" >您好,我是HTML专业技术员,为您服务! p >< p >擅长HTML、CSS、织梦模板、主机域名常见问题。 p > |
2:通过HTML调用样式,代码如下:
HTML代码为:
1
2
3
4
5
6
7
8
9
10
11
|
< html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title >段落开头空2个字 title > < link rel = "stylesheet" href = "style.css" type = "text/css" />
head > < body > < p >您好,我是HTML专业技术员,为您服务! p >< p >擅长HTML、CSS、织梦模板、主机域名常见问题。 p >
body >
html > |
style.csss样式表代码为:
1
|
p{ text-indent : 2em } |