I have tried to get this simple thing aligned the proper way but still looking for a way out. My simple question is how to align the circle <div class="circle active"></div>
, to be beside the name. right now, it is appearing at the top.
<h4 class="media-heading">
{{#if equals 'status.active' 'true' }}
<div class="circle active"></div>
{{else}}
<div class="circle not-active"></div>
{{/if}}<a href="/student/{{slug}}" target="_parent">{{firstname}} {{lastname}} <small class="pull-right">{{ createAt}}<label><input type="checkbox" name="eachstudents" value="{{_id}}">Add to Module</label></small></a></h4>
答案 0 :(得分:2)
问题是因为<div>
是block
级元素。
你可以:
<span>
元素代替<div>
<div>
display: inline-block
属性答案 1 :(得分:1)
使用css将display: inline-block
或float: left
应用于圈子类。应该工作得很好。
答案 2 :(得分:1)
我不确定这是否是您正在寻找的答案,但我建议采用两种不同的解决方案。
您可以将div
和a
(链接)放在ul
(无序列表)中,然后应用CSS属性float: left
。然后,您可以根据需要设置样式(通过删除项目符号或其他内容)。
制作代码absolute
的位置属性,然后根据需要对齐它们。更改窗口大小时这不稳定,但您可以尝试一下。