我正在尝试修复移动视图端口中的表结构(不是我的凌乱代码,但我需要在没有添加其他类的情况下修复它)。
下面我试图说明这个场景,下面你可以看到代码。希望这已经足够了,否则我会添加额外的代码。
这是在视口中没有额外 CSS 的情况下的外观:
_________________
| | |
| av | text |
|____|____________|
| | |
| av | username |
|____|____________|
这就是我的css的样子:
______
| |
| text |
|______|__________
|_av| | |
| |
| username |
|__________|
这就是我希望它看起来的样子:
_________________
| |
| text |
|_________________|
| | |
| av | username |
|____|____________|
av = 头像
html:
<div class="row-fluid post-comment">
<div class="span6 offset3 margin-small">
<table class="table table-condensed no-table-border">
<tbody>
<tr>
<td class="avatar">
<img src="http://placehold.it/40x40" class="img-circle">
</td>
<td class="text">
<p>text...</p>
</td>
</tr>
<tr class="user-card">
<td rowspan="2" class="avatar">
<img src="http://placehold.it/50x50" class="img-circle">
</td>
<td rowspan="2" class="username">
// content
</td>
</tr>
</tbody>
</table>
</div>
CSS:
.post-comment .span6 td.avatar {
display: none;
}
.post-comment .span6 .user-card td.avatar {
display: block;
}