# 自定义css

此设置允许您将自定义的 CSS 样式应用到您的整个在线商店，从而更精细地控制和定制网站的外观和布局。

### **功能详情**

1. **影响范围**:
   * 自定义 CSS 将影响您网站的所有页面，因此请确保代码的正确性和合理性，避免对其他页面元素产生意外影响。
2. **添加自定义样式**:
   * 在文本框中输入您的 CSS 代码。该代码将被添加到整个网站的样式表中，影响所有页面的样式。例如，您可以为特定元素自定义样式，如更改按钮的颜色、调整字体大小，或增加边框圆角等。
   * 示例代码，下面代码将使所有具有 `.card` 类的元素边角变圆，半径为 30 像素：

     ```css
     .card {
         border-radius: 30px;
     }
     ```

### **使用建议**

* **预览和测试**: 在应用自定义 CSS 之前，建议在开发或测试环境中预览效果，确保其不会破坏页面布局或影响用户体验。
* **简洁高效**: 尽量保持 CSS 代码的简洁和高效，避免冗余或冲突的样式，确保网站加载速度和样式表现的优化。
* **运用选择器**: 使用明确的 CSS 选择器来针对特定元素进行样式调整，避免无意中影响其他元素的样式。

### **进一步了解**

* 如果您对 CSS 不太熟悉，建议学习一些基础的 CSS 知识，或参考在线资源来获取更多信息。您可以点击“详细了解”链接，查看更多关于如何编写和应用 CSS 的指南。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://en-ascent.webvista.studio/ascent-mu-ban-shi-yong-shuo-ming/quan-ju-she-zhi/zi-ding-yi-css.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
