我可以有不同颜色的左边框和顶部的CSS?

iszxjhcz  于 2023-01-27  发布在  其他
关注(0)|答案(4)|浏览(157)

我希望左边的边框是4px厚粉色,其他地方是1px灰色:

border: 1px solid #E5E5E5;
border-left: 4px solid #F24495;

问题是连接是对角的,所以我得到了一个可怕的覆盖。我尝试:

.item:before{ 
  border-left: 4px solid #F24495;
}

但运气不好。

jsFiddle示例

截图

twh00eeo

twh00eeo1#

.item::before是正确的方法,但是除了border-left属性之外,还需要做一些工作。您需要使伪元素可见(display: block; content: "";),将伪元素定位在.item的左侧,并将其拉伸到与顶部和底部边框正确对齐。
虽然这可以手动完成,但我强烈推荐使用CSS Variables(或预处理器中的变量),因为它使更新边框宽度更不容易出错和痛苦。

.item {
  display: inline-block;
  padding: 0.2em 0.3em;
  background: #f8f8f8;
  color: #454545;

  /* Set border widths with variables */
  --top-border-width: 4px;
  --bottom-border-width: var(--top-border-width);
  --left-border-width: 16px;
  --right-border-width: var(--top-border-width);

  /* Set border styles for each side */
  border-top: var(--top-border-width) solid #e4e4e4;
  border-bottom: var(--bottom-border-width) solid #e4e4e4;
  border-right: var(--right-border-width) solid #e4e4e4;

  /* Remove the left border and add blank space where the border should be placed */
  border-left: 0;
  margin-left: var(--left-border-width);

  /* Contain the ::before */
  position: relative;
}

.item::before {
  /* Give the pseudo element substance */
  display: block;
  content: "";

  /* Add a left border with a straight edge */
  border-left: var(--left-border-width) solid #f84995;

  /* Position pseudo element's border where the normal border would have been placed */
  position: absolute;
  top: calc(0px - var(--top-border-width));
  bottom: calc(0px - var(--bottom-border-width));
  left: calc(0px - var(--left-border-width));
}
<h1 class="item">Gen.2</h1>
klr1opcd

klr1opcd2#

如果你想使用:before伪选择器,你还需要设置一些内容,例如this jsfiddle和下面的代码:

<div>Container</div>

CSS:

div {
    border: 10px solid black;
    border-left-width: 0;
}
div::before {
    border: 10px solid orange;
    border-right-width: 0;
    content: '';
}

显示为:

    • 编辑**

嗯,虽然这应该严格地回答了问题,但当我试图将我的解决方案调整到问题的小提琴上时,我发现这并不能很好地处理填充。欢迎提出建议/编辑/其他答案,可以处理这一点:(...

vnjpjtjt

vnjpjtjt3#

这应该工作,但需要额外的标记:

.outer {
    border: 1px solid #E5E5E5;
    border-left: 0;
}

.inner {
    border-left: 4px solid #F24495;
}

以及

<div class="outer">
    <div class="inner">
        ...
    </div>
</div>
wfveoks0

wfveoks04#

背景
默认情况下,CSS使用miter joints(45°角)作为所有边界的关节。因此,要实现任何边界的方形关节(90°角),您可以使用(1)内部box-shadow,(2)pseudo-elements或(3)background-image和多个linear-gradients
假设您有以下要设置样式的元素:

<div></div>

选项1:方形接头使用box-shadow

div {
  /* downside of using box-shadow, you need to add the   */
  /* inner border size to the padding on top of any      */
  /* additional padding you might want                   */
  padding: 20px;
  /* by changing the order of your box-shadows, you      */
  /* can modify which borders overlap each other         */
  box-shadow:
    /* left "inner border" */
    inset 20px 0 0 0 red,
    /* right "inner border" */
    inset -20px 0 0 0 grey,
    /* top "inner border" */
    inset 0 20px 0 0 grey,
    /* bottom "inner border" */
    inset 0 -20px 0 0 grey;
}

选项2:方形接头pseudo-elements

div {
  border: 20px solid grey;
}

div::before {
  position: absolute;
  background-color: red;
  content: "";
  width: 20px;
  /* we need to add the height of the top and bottom    */
  /* border to the pseudo-elements' height as the       */
  /* inset border is not included in the height of the  */
  /* div even when "box-sizing: border-box" is set.     */
  height: calc(100% + 20px + 20px);
  top: -20px;
  left: -20px;
}

选项3:使用background-image和多个linear-gradients的方形接头

div {
  /* downside of using multiple linear-gradients, you   */
  /* need to add the inner border size to the padding   */
  /* on top of any additional padding you might want    */
  padding: calc(20px + 10px);
  background-image: 
    /* left "inner border" */
    linear-gradient(to right, red 20px, transparent 20px),
    /* right "inner border" */
    linear-gradient(to left, grey 20px, transparent 20px),
    /* top "inner border" */
    linear-gradient(grey 20px, transparent 20px),
    /* bottom "inner border" */
    linear-gradient(to top, grey 20px, transparent 20px);
}
  • View on JSFiddle
  • background-images()的浏览器支持
  • linear-gradient()的浏览器支持

相关问题