如何通过 bulma css 使我的表单在移动设备中为全角并在桌面上使我的表单为特定宽度?

问题描述 投票:0回答:2
css bulma
2个回答
0
投票

您使用的 bulma 框架因此,指定 bulma 框架的网格系统,您可以在输入元素中使用类列,并且您可以使用要设置输入字段宽度的列数


0
投票
<div class="control">
   <input type="text" class="input column-12 is-medium is-danger" 
          placeholder="Put the title of item here" required="" value="">
   <p class="help is-danger">title's length should be equal or greater than 10. Current: 0</p>
</div>
© www.soinside.com 2019 - 2024. All rights reserved.