> For the complete documentation index, see [llms.txt](https://brianwu.gitbook.io/brian/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://brianwu.gitbook.io/brian/qian-duan/css/padding-color.md).

# padding color

參考文章:(<https://stackoverflow.com/questions/14628601/can-i-add-background-color-only-for-padding>)

以我的例子來說，我用jQuery 畫出 QRcode 會長這樣

![](/files/-LmbdtZPOrfuz3flBNU8)

假如背景是更深一點，甚至是黑色，會導致 QRcode 不容易被使用者掃描，所以我希望在外圍增加白色邊框。 那個canvas 是jQuery 畫出QRcode 的元素

*style*

```
.QRCODE_pic canvas{
    text-align: center;
    width:36em;
    height:36em;
    padding:1em;
    box-shadow: inset 0 0 0 1em white;
}
```

*jQuery*

```
$("div[data-role=QRCode]").qrcode({ width:512, height:512, text : "123" });
```

*html*

```
<div class="QRCODE_pic" data-role="QRCode"></div>
```

![](/files/-LmbdtZSFdLwVnBNj-xO)

這是我畫出來的效果，希望有幫助囉。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://brianwu.gitbook.io/brian/qian-duan/css/padding-color.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.
