gpt4 book ai didi

html - css metro 瓷砖选择的风格

转载 作者:太空宇宙 更新时间:2023-11-04 04:02:24 32 4
gpt4 key购买 nike

我正在尝试在选择效果后将 div 样式设置为 Metro 样式磁贴。我添加了 border-top:28px solid #4390df;到 div,但我无法为磁贴选择效果。任何帮助将不胜感激。

下面是我的要求草图 enter image description here

My fiddled code is here

<div class="tileSelected">
this is test content
</div>

.tileSelected{
border-width: 4px;
border-top:28px solid #4390df;
border-left:28px solid transparent;
display:block;
content:"";
height:100px;
width:100px;
background-color:black;
color:#fff;
}

最佳答案

我不认为 border 是解决这个问题的方法。生成的内容是将勾号放在右上角的更好选择。你可以用文本来做,但是一个小的勾号图像会更容易,就像这样:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>

.tileSelected {
height:100px;
width:100px;
background:black;
color:#fff;
position: relative;
}

.tileSelected::before {
content: "";
width: 28px;
height: 28px;
top: 0;
right: 0;
position: absolute;
background: url(tick.png);
}

</style>
</head>
<body>

<div class="tileSelected">
this is test content
</div>

</body>
</html>

关于html - css metro 瓷砖选择的风格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21867570/

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