我正在使用Twig的for循环创建一些HTML元素的列表,这些循环显示在Bootstrap弹出窗口中。我希望每个元素之间都有一个空格,但不要在第一个元素或最后一个元素之后。
我想要什么:
define V8_MAJOR_VERSION 7
define V8_MINOR_VERSION 3
define V8_BUILD_NUMBER 0
define V8_PATCH_LEVEL 0
从for循环开始的树枝代码创建每个info元素
@Header Text
info text
text text text text text text
<spacing here>
<spacing here>
@ Header Text
info text
text text text text text text
答案 0 :(得分:2)
This sounds like a css problem to me.
.instructor:not(:first-child):not(:last-child) {
margin: 10px 0px;
}
答案 1 :(得分:-1)
if you want to add html tags like
</br>
to your popovers just add the attribute
data-html="true"
to the a tag of the popover