gpt4 book ai didi

css - 通过 CSS 缩短表单输入长度

转载 作者:太空宇宙 更新时间:2023-11-04 12:18:41 25 4
gpt4 key购买 nike

我正在尝试通过嵌入式 mailchimp 注册代码缩短某些表单输入字段的长度。我试过在每个输入字段中添加尺寸标签,但这不起作用。我想我需要使用 CSS 进行编辑。我不知道如何引用每个单独的输入字段并缩短长度。有人可以帮忙吗?我还没有机会开始学习 CSS。

感谢一百万!

 <style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

#form input[type="email"] {

width: 100px;
}

</style>
<div id="mc_embed_signup">
<form action="//GNND.us9.list-manage.com/subscribe/post?u=9c4e5486333883976fbe87bb0&amp;id=f4b7e7abf4" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h2>Subscribe to our mailing list</h2>
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span>
</label>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</div>
<div class="mc-field-group">
<label for="mce-FNAME">First Name <span class="asterisk">*</span>
</label>

最佳答案

没有 id="form" 的元素,所以选择器不会匹配任何东西。

您可以改为匹配表单元素:

form input[type="email"]

或者使用表单的实际id:

#mc-embedded-subscribe-form input[type="email"]

关于css - 通过 CSS 缩短表单输入长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28510270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com