复选框上的宽度 100% 使其居中对齐。我该如何应对?

发布于 2024-08-30 16:23:47 字数 90 浏览 2 评论 0原文

我通过 CSS 将所有输入设置为 100% 宽度。但是,由于某种原因,复选框居中对齐。 无论如何要反击这个吗? 我不想通过 css 使用属性选择,因为它们不完全支持。

I am setting all inputs to a 100% width via CSS. However, checkboxes are center aligned for some reason.
Anyway to counter this?
I don't want to have to use attribute selection via css since they're not fully supported.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

白首有我共你 2024-09-06 16:23:47

您需要将宽度设置回自动(width: auto)。

如果您不想使用属性选择器,则必须找到另一个与复选框匹配的选择器。这很可能涉及添加额外的标记(例如类)。

You need to set the width back to auto (width: auto).

If you don't want to use attribute selectors, then you must find another selector that matches the checkboxes. This may well involve adding additional markup (such as a class).

谁的新欢旧爱 2024-09-06 16:23:47

您需要将复选框包装在另一个元素中:

<div class="checkbox">
    <input type="checkbox" value="check-value">Human readable value
</div>

在 CSS 中:

.checkbox {
    width: 100%;
    text-align: left;
}

You need to wrap your checkbox in another element:

<div class="checkbox">
    <input type="checkbox" value="check-value">Human readable value
</div>

In CSS:

.checkbox {
    width: 100%;
    text-align: left;
}
ま昔日黯然 2024-09-06 16:23:47

检查这个

input.checkbox 
{ 
    text-align: left; 
    margin: 0 auto;
}

Check this

input.checkbox 
{ 
    text-align: left; 
    margin: 0 auto;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文