html+css+js项目经验

1.居中对齐:margin:0 auto;

节点如果不能对齐,那么它有可能是行内元素,那么就在css加一句:display:block;

2.wmode:

实现透明:

3.设置
background: #fff url(../images/001.png) no-repeat left bottom;    
background-size: 300px;
4.inline:内联

display:inline;

  • 是块元素,用了inline就是横着排列
    block相对

    5.首行缩进

    text-indent: 24px;

    6.左对齐,右对齐

    margin-left: auto; 右边对齐

    margin-right: auto;左边对齐

  • 你可能感兴趣的:(html+css+js项目经验)