gpt4 book ai didi

css - 电子邮件中 ​​css 边框三 Angular 形中的中心文本

转载 作者:行者123 更新时间:2023-11-28 14:08:15 24 4
gpt4 key购买 nike

我正在尝试在电子邮件中使用 css 边框生成一个三 Angular 形,并在其中放置一些动态文本(数字),但我想将其设置为三 Angular 形中心,但我无法使用定位,因为它已从内联CSS

我试过将三 Angular 形 css 的 div 和文本跨度放在 div 容器中并使用位置对齐它 - 没有用

<div style="<%= MailComponents.create_style('display' => 'inline-block', 'width' => '2px', 'height' => '0px', 'border-radius' => '4px' ,'border-left' => '20px solid transparent', 'border-right' => '20px solid transparent' ,'border-bottom => '30px solid #FC577A', 'color' => '#fff', 'vertical-align' => 'middle', 'line-height' => '28px', 'margin-top' => '-10px') %>">
<span style="<%= MailComponents.create_style('position' => 'relative', 'left' => '-8px','vertical-align' => 'middle', ) %>">
<%= some dynamically generated number %>
</span>
</div>

尝试使用这个技巧

http://jsfiddle.net/VScFS/57/

没有帮助我想知道这是否可以用表格来完成

最佳答案

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.container {
display: grid;
grid-template-columns: auto;
justify-content: center;
align-items: center;
}

.wrapper {
background: #000;
width: 200px;
height: 200px;
-webkit-clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="container">
<div class="wrapper">
</div>
</div>
</body>
</html>

在父类上使用 display:gridjustify-content: center; 使其水平居中对齐!作为引用,您可以查看 https://www.w3schools.com/cssref/pr_grid.asp这个链接。希望对你有帮助

关于css - 电子邮件中 ​​css 边框三 Angular 形中的中心文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56919873/

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