LayUI樣式優化


如下是LayUI框架中頁面元素的CSS優化樣式:

/* 表單輸入框寬度 */
.layui-form-item .layui-input-inline {
    width: 295px;
}
/* 下拉框向上彈出 */
.layui-form-select dl {
    top: auto;
    bottom: 36px;
}
/* 表單必填項目 */
.label-required-next:after {
    top: 6px;
    right: 5px;
    color: red;
    content: '*';
    position: absolute;
    margin-left: 4px;
    font-weight: 700;
    line-height: 1.8em;
}
/* 解決通過方法渲染的表格checkbox不居中問題 */
.layui-table-cell .layui-form-checkbox[lay-skin="primary"] {
    top: 50%;
    transform: translateY(-50%);
}
/* 下拉框,滾動條無法展示所有選項的問題 */
.layui-form-select dl {
    max-height:250px;
}

【參考】
https://blog.csdn.net/BeauXie/article/details/60959971 layer的Icon樣式以及一些常用的layer窗口使用
https://blog.csdn.net/qq_24562495/article/details/104516722 layui表單必填項帶*樣式
https://blog.csdn.net/cccmercy/article/details/79115550 解決Layui數據表格中checkbox位置不居中
https://blog.csdn.net/weixin_45237517/article/details/100694438 layui form 中input輸入框長度的統一設置
https://blog.csdn.net/FansUnion/article/details/88616186 layui-select下拉框,滾動條無法展示所有選項的問題
https://blog.csdn.net/hangchen1025/article/details/107337215 使layui的select選擇框向上彈出


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM