css杂记【01】

css目标:想让body的默认高度为100%
html{
 height:100%;
}


css目标:想让<p>内文字超出部分自动换行
p{
word-break:break-all; 
width:200px; 
overflow:auto;
}


css目标:不想让鼠标拖动图片、文字等
img{
pointer-events:none;
}

猜你喜欢

转载自1971161579.iteye.com/blog/2373779
今日推荐