首页 > 解决方案 > 如何删除html中标签之间的空格?

问题描述

所以我有这个代码:

<form action="{{ url_for('profile') }}" method="post" enctype=multipart/form-data>
  <label for="files" class="btn btn-light btn-sm">Cambiar foto de perfil</label>
    <input id="files" style="visibility:hidden;" name="photo" type="file" required>
    <input type="file" accept="image/*">
    <label for="submit" class="btn btn-light btn-sm">Actualizar</label>
    <button style="visibility:hidden;" id="submit" type="submit"> Actualizar </button>
</form>

我想知道如何消除这些标签之间的空间。我已经尝试使用 Margin="0" 并没有发生任何事情......在此先感谢。

标签: html

解决方案


你指的是“Cambiar foto de perfil”右边的空间吗?如果是这样,那是由于相邻输入的样式设置为可见性:隐藏。如果您希望隐藏该输入并且不占用任何空间,则需要将其设置为 Display: none 而不是 visibility 属性。


推荐阅读