Home >Web Front-end >Layui Tutorial >Where is layui's css style?
layui CSS style file is located at layui-v2.7.0\dist\css\layui.css or loaded through CDN: https://unpkg.com/layui@latest/dist/css/layui.min.css .
layui CSS style file location
layui CSS style file is usually located at layui.css file, which is located in the layui framework package.
Specific path:
If you downloaded the layui framework package from the layui official website, the layui.css file is usually located in the following path:
<code>layui-v2.7.0\dist\css\layui.css</code>
CDN address:
If you are using layui’s CDN service, the CDN address of the layui.css file is:
<code>https://unpkg.com/layui@latest/dist/css/layui.min.css</code>
How to load layui CSS styles:
You can pass <link>## in the
section of the HTML document # Tag loading
layui.css File:
<code class="html"><link href="layui.css" rel="stylesheet"></code>
Note:
The above is the detailed content of Where is layui's css style?. For more information, please follow other related articles on the PHP Chinese website!