gpt4 book ai didi

html - 使用 margin minus 是正确的方法吗?

转载 作者:太空狗 更新时间:2023-10-29 16:34:16 25 4
gpt4 key购买 nike

<分区>

我的这段代码运行良好,但通常(不是专门针对这段代码)我的高级开发人员告诉我要避免负边距值。

#speech-bubble {
margin:100px;
width: 120px;
height: 80px;
background: blue;
position: absolute;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#speech-bubble:before {
content:"";
position: absolute;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-right: 26px solid blue;
border-bottom: 13px solid transparent;
margin: 13px 0 0 -25px;
}
<body>
<div id="speech-bubble">
</div>
</body>

  1. 为什么我需要避免 margin 出现负值?

  2. 如果我删除了内容:“”我的代码不起作用,但我认为这是不必要的行。

  3. 这是做什么的?从我的代码中删除它后,一切正常吗?

    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;

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