我想要的是:
我所取得的成就:
我已经将两个 DIV 标签放在一起浮动(我也尝试过使用表格)。我希望 HR 线填充标题未使用的其余水平空间。
我不想使用固定宽度或百分比宽度。
我已经尝试了大多数我所知道的表格单元格。我可以描述我想要的属性的最佳方式类似于 display: inline with headers,因此它会阻止它全宽,但表格会环绕它以离开 HR 表格单元格以填充行的其余部分。
这是一些代码:最初没有附加,因为只有表格对它没有太大影响,丢弃了不相关的部分
.certificatetitle { font-weight: 100; font-size: 16px; }
.collapsed .line { height: 40px; }
.line { height: 40px; }
.line hr { color: #f69f1a; background-color: #f69f1a; border-color: #f69f1a; height: 1px; }
<table class="certificatebar" height="40px">
<tr>
<td class="certicon" width="30px"></td><td class="certificatetitle">Microsoft Office</td><td class="line"><hr /></td><td class="dropdown" width="20"></td>
</tr>
</table>