更改

添加116字节 、 2023年10月21日 (六) 12:23
无编辑摘要
第261行: 第261行:     
@media (max-width: 720px) {
 
@media (max-width: 720px) {
     .content table {
+
     body .content .character-table {
         display: table !important; /* 重置为table的默认display值 */
+
         width: 1200px !important;
         width: initial !important;   /* 重置为默认宽度 */
+
         display: table !important;
         box-sizing: content-box !important; /* 重置为默认的box-sizing值 */
+
         box-sizing: content-box !important;
 +
    }
 +
 
 +
    body .content table.wikitable {
 +
        border: 1px solid !important;  /* 或者你想要的任何其他边框样式 */
 +
    }
 +
 
 +
    body .content caption {
 +
        display: table-caption !important;
 
     }
 
     }
 
}
 
}