在电子邮件的 css 边框三角形中居中文本
Center text in a css border-triangle in email
我正在尝试使用电子邮件中的 css 边框生成三角形并在其中放置一些动态文本(数字),但我想将其设置为三角形中心,但我无法使用定位因为它已从内联 css
中删除
我试过将三角形 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>
在父级 class 和 justify-content: center; 上使用 display:grid 使其居中对齐横向!作为参考,您可以查看 https://www.w3schools.com/cssref/pr_grid.asp 这个 link。希望对你有帮助
我正在尝试使用电子邮件中的 css 边框生成三角形并在其中放置一些动态文本(数字),但我想将其设置为三角形中心,但我无法使用定位因为它已从内联 css
中删除我试过将三角形 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>
在父级 class 和 justify-content: center; 上使用 display:grid 使其居中对齐横向!作为参考,您可以查看 https://www.w3schools.com/cssref/pr_grid.asp 这个 link。希望对你有帮助