如何自定义网站广告的尺寸和 CSS 样式?

您可以将 css 写入 div 的 style 中,例如:

<div class="wwads-cn wwads-horizontal" data-id="{{你的广告单元 ID}}" style="max-width:350px;background-color:#fff;margin-top:20px;box-shadow:0 1px 3px rgb(26 26 26 / 10%)"></div>

也可以使用媒体查询等方法,例如:

a.wwads-text{font-size:18px!important} @media (max-width: 576px) {a.wwads-text{font-size:14px!important}}

还可以添加一个自定义类,并为其增加自定义样式,例如:

<div class="wwads-cn wwads-horizontal my-custom-class" data-id="{您的广告单元ID}">...</div>

<style> .my-custom-class {...} </style>

我们很乐于为您解惑;)