Safari边界bug

问题描述 投票:0回答:2

我需要使用渐变来使blockquote左边框。但在Safari中它显示在两侧。我试图使border-right 0和none。我也尝试使用-webkit-前缀。

这就是它在Safari上的样子:safari和Chrome:chrome

Codepen:https://codepen.io/domanskyi/pen/xewQNb

HTML:

<div class="content">Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora nam itaque nesciunt omnis, ut nihil veritatis adipisci corrupti velit. Reiciendis dolorem suscipit numquam expedita iure eum labore eos maxime rerum.</div>

CSS:

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
}

.content {
  width: 320px;
  height: 100px;
  color: #333;
  background-color: #fff;
  padding: 10px;  

  border-left-style: solid;
  -webkit-border-left-style: solid;

  border-width: 0 0 0 3px;
  -webkit-border-width: 0 0 0 3px;

  border-image: linear-gradient(to bottom,  #D71F49 0%, #2E3D59 100%) 1 100%;

  border-right-width: 0px !important;
  -webkit-border-right-width: 0px !important;

  border-right: 0px !important;
  -webkit-border-right: 0px !important;

  border-right: none !important;
  -webkit-border-right: none !important;

  border-image-repeat: none;
}
css css3 safari border
2个回答
1
投票

我看不出你的代码有什么问题,但它简化了它使我在Safari中的工作方式与我一样:https://codepen.io/RwwL/pen/JVYzox

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
}

.content {
  width: 320px;
  height: 100px;
  color: #333;
  background-color: #fff;
  padding: 10px;
  border-style: solid;    
  border-width: 0 0 0 3px;
  border-image: linear-gradient(to bottom,  #D71F49 0%, #2E3D59 100%) 1 100%;
  border-image-repeat: none;
}

0
投票

所以,我已经放弃并使用伪类制作了它

.content2 {
  position: relative;
  width: 320px;
  height: 100px;
  color: #333;
  background-color: #fff;
  padding: 10px;    
}

.content2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 3px;
  height: 100%;
  background-image: linear-gradient(to bottom,  #D71F49 0%, #2E3D59 100%);
}
© www.soinside.com 2019 - 2024. All rights reserved.