css:text-align、注释、background-color、margin-left

版权声明:原创内容,欢迎转载 https://blog.csdn.net/weixin_43731793/article/details/91535307

1、text-align: 水平对齐

h1 {text-align: center}
h2 {text-align: left}
h3 {text-align: right}

2、注释

/*这是个注释*/

3、background-color:背景颜色

body
  {
  background-color:yellow;
  }
h1
  {
  background-color:#00ff00;
  }
p
  {
  background-color:rgb(255,0,255);
  }

4、margin-left:左外边距

p
  {
  margin-left:2cm;
  }

猜你喜欢

转载自blog.csdn.net/weixin_43731793/article/details/91535307