element ui css写在哪里
时间: 2023-06-28 14:12:56 浏览: 114
element-ui css
你可以在 HTML 文件中的 `<head>` 标签中使用 `<link>` 标签来引入 Element UI 的 CSS 样式表。例如:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Web Page</title>
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
</head>
<body>
<!-- Your HTML code here -->
</body>
</html>
```
这里使用的是 CDN,你也可以下载 Element UI 的 CSS 文件并放在你的项目中,然后使用相对路径引入。
阅读全文