css样式

1.解决单行文本溢出打点

max-width:640px;   //显示文字最大宽度

white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;


2.插入图片

height:300px;

width:100%;

background:url(../img/11.png);

background-position:center;

background-repeat:no-repeat;

background-size:cover;


3.!important --》强制使用该样式

#content img{

max-width:800px !important;

}

你可能感兴趣的:(css样式)