gpt4 book ai didi

css - 左右交替定义列表

转载 作者:行者123 更新时间:2023-11-28 14:14:37 26 4
gpt4 key购买 nike

我有一个简单的定义列表,格式如下:

    dl {
margin: 0;
}

dl.interview dt {
color: #A8A67A;
}

dl.interview dd {
margin-left: 0;
}

.interview dt:before {
content: 'Q. ';
}
.interview dd:before {
content: 'A. ';
}

dt {
margin-top: 1em
}

dd {
font-style: italic;
padding: 0;
}

如何让每对连续的问题和答案左右交替?

最佳答案

我会使用 nth-of-type选择器。我调整了您的 dl.interview dt 的边距,并在顶部添加了 0 边距 (dl, dl dt, dl dd)。

希望对你有帮助

dl, dl dt, dl dd {
margin: 0;
}

dl.interview dt {
color: #A8A67A;
}

dl.interview dd {
/*margin-left: 0;*/
}

.interview dt:before {
content: 'Q. ';
}

.interview dd:before {
content: 'A. ';
}

dt {
margin-top: 1em
}

dd {
font-style: italic;
padding: 0;
}

dd:nth-of-type(even){margin-left:65%;}
dt:nth-of-type(even){margin-left:65%;}
<dl class="interview">
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>

关于css - 左右交替定义列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56049669/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com