1、改变选中文字的背景和颜色
1 2 3 4 5 6 7 8 |
::selection{ /* Safari and Opera */ background:#c3effd; color:#000; } ::-moz-selection{ /* Firefox */ background:#c3effd; color:#000; } |
2、防止火狐滚动条跳动
1 |
html{ overflow-y:scroll; } |
3、分页打印
1 |
.page-break{ page-break-before:always; } |