使用W3卡时向右清空space
Empty space to the right when using W3-card
当我使用W3卡class时,元素的右侧并不总是被使用。
我已经将 padding-right 设置为 0px 并且仍然相同。
可能是什么原因。
下面的代码
<div class="w3-content w3-card-4" style="width:500px; padding-right:2px ">
<div class="w3-row">
<div class="col-md-7">
<h2 style="color:blue;"> Logged Out </h2>
<br />
You have Logged Out Successfully. You can <a runat="server" class="w3-badge
w3-purple w3-hover-blue" href="~/Login.aspx">Login</a> here
</div>
</div>
</div>
问题在于 class="col-md-7" 的使用。它限制了另一方的使用。
破解成功
当我使用W3卡class时,元素的右侧并不总是被使用。
我已经将 padding-right 设置为 0px 并且仍然相同。
可能是什么原因。
下面的代码
<div class="w3-content w3-card-4" style="width:500px; padding-right:2px ">
<div class="w3-row">
<div class="col-md-7">
<h2 style="color:blue;"> Logged Out </h2>
<br />
You have Logged Out Successfully. You can <a runat="server" class="w3-badge
w3-purple w3-hover-blue" href="~/Login.aspx">Login</a> here
</div>
</div>
</div>
问题在于 class="col-md-7" 的使用。它限制了另一方的使用。
破解成功