- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3天前关闭。
Improve this question
我很难从我的块引用中删除左边界,我以前从未遇到过这种情况。在块和外部边界之间似乎有另一个边界,但我不确定该元素的名称。我正在覆盖朋友给我的CSS模板中的默认样式。
<style>
.bq {
color: #14171A;
background-color: #1DA1F2;
font-weight: bold;
border-left: 5px solid #14171A;
}
</style>
<div class="bq">
> Test
</div>
我附上了一张它看起来像什么的图片。浅蓝色是什么元素,我如何改变它?
1条答案
按热度按时间cclgggtu1#
在标准(未设置样式的)
blockquote
元素中,默认情况下不显示此选项。从您的图像判断,最有可能是
padding-left
,所以尝试添加padding-left: 0;
来摆脱它。或者是嵌套子元素的左边框或填充-检查浏览器中的代码,看看哪一个适用。