You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
210 B
14 lines
210 B
10 months ago
|
body {
|
||
|
/* 整个body不可点击 */
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
/* textarea去除右下角拖拽键 */
|
||
|
textarea {
|
||
|
resize:none;
|
||
|
}
|
||
|
/* 签名按钮打印时不显示 */
|
||
|
.hmbutton {
|
||
|
display: none;
|
||
|
}
|
||
|
|