.layui-layout-admin .layui-logo { position: fixed; left: 0; top: 0; z-index: 1002; width: 220px; height: 49px; padding: 0 15px; box-sizing: border-box; overflow: hidden; font-weight: 300; background-repeat: no-repeat; background-position: center center }
时间: 2024-02-22 07:01:18 浏览: 72
这是一个 CSS 样式代码,用于设置页面布局中左侧 Logo 的样式。其中,`.layui-layout-admin` 为页面布局的样式类,`.layui-logo` 为 Logo 元素的样式类。`position: fixed` 表示 Logo 元素在页面上固定位置不动,`left: 0; top: 0;` 表示 Logo 元素在页面的左上角位置,`z-index: 1002` 表示 Logo 元素的层级为 1002,即比页面中其他元素更高,`width: 220px; height: 49px;` 表示 Logo 元素的宽度和高度分别为 220 像素和 49 像素,`padding: 0 15px;` 表示 Logo 元素的内边距为 0 上下,15 左右,`box-sizing: border-box;` 表示元素的盒模型为 border-box,`overflow: hidden;` 表示 Logo 元素内容溢出时隐藏,`font-weight: 300;` 表示 Logo 元素文字的字重为 300,`background-repeat: no-repeat; background-position: center center` 表示 Logo 元素的背景图片不重复,居中显示。
阅读全文