gpt4 book ai didi

html - 在 dd 上使用表格单元格

转载 作者:行者123 更新时间:2023-11-28 02:26:31 25 4
gpt4 key购买 nike

我正在尝试将元素排成一行。

<dt>2018.05.10</dt>
<dd>
<a href="http://www.nippon-shindo.co.jp/pdf/2019_03tr.pdf" target="_blank">
<p class="cell">
<span class="orange">></span>中間期 決算短信 &ensp;[ PDF形式 146KB ]
</p>
</a>
</dd>

dl {
display: table;
flex-wrap: wrap;
}

#summary .cell {
display: table-cell;
}

但无法使它们内联。

最佳答案

dl {
width: 100%;
overflow: hidden;
padding: 0;
margin: 0
}

dt {
float: left;
width: 50%;
/* adjust the width; make sure the total of both is 100% */
padding: 0;
margin: 0
}

dd {
float: left;
width: 25%;
/* adjust the width; make sure the total of both is 100% */
padding: 0;
margin: 0
}
<dl>
<dt>2018.05.10</dt>
<dd>

<a href="http://www.nippon-shindo.co.jp/pdf/2019_03tr.pdf" target="_blank">
<p class="cell">
<span class="orange">></span>中間期 決算短信 &ensp;[ PDF形式 146KB ]
</p>
</a>

</dd>
<dd><img align="right" src="images/summary/pdf.png"></dd>
<dt>2017.11.14</dt>
<dd>

<a href="http://www.nippon-shindo.co.jp/pdf/2019_03tr.pdf" target="_blank">
<p class="cell">
<span class="orange">></span>中間期 決算短信 &ensp;[ PDF形式 146KB ]
</p>
</a>

</dd>
<dd><img align="right" src="images/summary/pdf.png"></dd>

<dt>2017.08.09</dt>
<dd>

<a href="http://www.nippon-shindo.co.jp/pdf/2019_03tr.pdf" target="_blank">
<p class="cell">
<span class="orange">></span>中間期 決算短信 &ensp;[ PDF形式 146KB ]
</p>
</a>

</dd>
<dd><img align="right" src="images/summary/pdf.png"></dd>


<dt>2018.02.14</dt>
<dd>

<a href="http://www.nippon-shindo.co.jp/pdf/2019_03tr.pdf" target="_blank">
<p class="cell">
<span class="orange">></span>中間期 決算短信 &ensp;[ PDF形式 146KB ]
</p>
</a>

</dd>
<dd><img align="right" src="images/summary/pdf.png"></dd>

</dl>

上面我有 css 使用 float 如果你想要 4 列你可以玩 css 宽度并添加 dd

两个空格 - 输入 四个空格 - 输入 Tab - 输入     

希望对你有帮助

关于html - 在 dd 上使用表格单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53754607/

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