CSS 侧面有三角形的轮廓和边框

CSS outline & border with triangle on side

我正在尝试创建一个带三角形的双边框工具提示,但我不知道如何制作轮廓部分,因为没有 outline-right/left/top/bottom。

这是我目前的情况

body {
  background-color: rgb(83, 110, 218);
}
.trigger {
  margin-top: 150px;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #000;
}
.tooltip {
  /* Misc */
  text-align: center;
  padding-top: 20px;
  background-color: white;
  position: absolute;
  width: 300px;
  height: 50px;
  left: 70px;
  top: -25px;
  outline-color: white;
  outline-width: 3px;
  outline-style: solid;
  border-color: rgb(83, 110, 218);
  border-width: 3px;
  border-style: solid;
}
.tooltip:after,
.tooltip:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
}
.tooltip:after {
  border-color: rgba(136, 183, 213, 0);
  border-right-color: white;
  border-width: 20px;
  margin-top: -20px;
}
.tooltip:before {
  border-color: rgba(194, 225, 245, 0);
  border-right-color: rgb(83, 110, 218);
  border-width: 26px;
  margin-top: -26px;
}
<div class="trigger">
  <div class="tooltip">
    Hello World
  </div>
</div>

或转到此处:Fiddle

有人知道如何实现吗?

我建议你使用 svg

body {
  background: rgb(83, 110, 218)
}
<svg width="300" height="60" viewBox="0 0 300 60">
  <path d="M20 5h270v50h-270v-12.5l-10 -12.5l10 -12.5z" fill="white" />
  <path d="M16 1h278v58h-278v-15l-11 -14 l11,-14z" fill="none" stroke-width="2.5" stroke="white" />
  <text x="150" y="35" text-anchor="middle">Hello World</text>
</svg>

对于纯 CSS 替代,您可以使用以下代码段。它基本上使用 double 作为主矩形的 border-style(而不是 outline)和一个旋转 45 度以生成三角形的伪元素。三角形有一个 border 与主矩形(或主体)的内边框颜色相同,还有一个 box-shadow 是白色以产生双边框效果。伪元素的位置适当,使其看起来像是主矩形 border 的延续。

Note: To modify the thickness of the border, the border-width of parent, border-width of the pseudo-element, the box-shadow on the pseudo-element and the positioning of the pseudo-element should be modified accordingly.

body {
  background-color: rgb(83, 110, 218);
}
.trigger {
  margin-top: 150px;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #000;
}
.tooltip {
  /* Misc */
  text-align: center;
  padding-top: 20px;
  background-color: white;
  position: absolute;
  width: 300px;
  height: 50px;
  left: 70px;
  top: -25px;
  border-color: rgb(83, 110, 218);
  border-width: 6px;
  border-style: double;
}
.tooltip:before {
  left: -11.75px;
  top: 35%;
  height: 20px;
  width: 20px;
  border: 2.5px solid rgb(83, 110, 218);
  box-shadow: -2px 2px 0px 0px white;
  border-right: none;
  border-top: none;
  content: " ";
  background: white;
  position: absolute;
  pointer-events: none;
  transform: rotate(45deg);
}
<div class="trigger">
  <div class="tooltip">
    Hello World
  </div>
</div>