gpt4 book ai didi

html - 如何减少我的框中的空白(右宽度)

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

你好,我的表中有两个内容,所以两个框包含 html 中的内容。我想减少这两个盒子之间的距离,但我意识到一个盒子的尺寸太大,它们只是空白。我无法缩小尺寸。有人可以帮我吗?因此,位于同一行的单元格 x 和单元格 y 位置更近。

<table class="table">
<tr id="cell">
---------------------------------------------------------------(one cell)
<td class="vert-align">
<div class="voting-space">

<a href="/post/{{ post.slug }}/vote?is_up=1" class="vote">
<span class="glyphicon glyphicon-triangle-top col-md-12" aria-hidden="true"></span></a>
<br />

<span class="col-md-12" style="height:1px; font-family: 'Passion One', cursive; bottom:10px; padding-left:0.01em;
"><h4 id="vote_count_{{ post.slug }}">{{ post.get_vote_count }}</h4></span> <br>

<a href="/post/{{ post.slug }}/vote?is_up=0" class="vote">
<span class="glyphicon glyphicon-triangle-bottom col-md-12" aria-hidden="true"></span></a>
</div>
</td>

--------------------------------------------------------------------(the other cell)
<td class="vert-align">
{% if post.url %}
<h4 id="line">
<a href="{{ post.url }}" target="_blank" style="margin-left: 15px; text-decoration:none;"> <img src="{{post.image}}" height="85" width="85"/><span id="title-font">{{ post.title }}</span></a>
<span style="margin-left: 15px;" class="domain">({{ post.domain }})</span>
<span class="discuss" style="color:red;"><a href="{% url 'post' post.slug %}" class="btn btn-warning btn-sm">토론장 입장</a></span>
<br />
<span class="post-info">{{ post.pub_date | timesince }}전/<a href="{% url 'userena_profile_detail' post.moderator.username %}">{{ post.moderator.username }}</a>작성/<i class="fa fa-eye"></i>{{post.views}}/<a href="/category/{{post.category}}">{{post.category}}</a></span>
</h4>
{% else %}
<h4><a href="{% url 'post' post.slug %}" style="margin-left: 15px;">{{ post.title }}</a><span style="margin-left: 15px; "class="domain">({{ post.domain }})</span></h4>
{% endif %}

最佳答案

要控制 CSS 中的“cellpadding”,您可以简单地在表格单元格上使用填充。例如。对于 10px 的“cellpadding”:

td { 
padding: 10px;
}

对于“cellspacing”,您可以将 border-spacing CSS 属性应用于表格。例如。对于 10px 的“cellspacing”:

table { 
border-spacing: 10px;
border-collapse: separate;
}

此属性甚至允许单独的水平和垂直间距,这是旧式“单元格间距”无法做到的。

关于html - 如何减少我的框中的空白(右宽度),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35250924/

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