【CSS】文字纵向排版
/* 单列展示时*/ .wrap { width: 25px; line-height: 18px; height: auto; font-size: 12px; padding: 8px 5px; word-wrap: break-word;/...
/* 单列展示时*/ .wrap { width: 25px; line-height: 18px; height: auto; font-size: 12px; padding: 8px 5px; word-wrap: break-word;/...
线性渐变/* * background-image: linear-gradient( 方向/角度 , 颜色1,颜色2,颜色3....); * 方向: 在关键字 to 后面加上 top、bottom、right、left 中的某一个关键字或多个关键字 * 角度:除了使用关键字to +方向...
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, e...
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: red; } input::-moz-placeholder { /* Firefox 19+ */ color: red; } input:-ms-i...
屏蔽复制document.oncopy = function(event) { if (window.event) { event = window.event; } try { var the = event.srcElement; ...