【发布时间】:2018-02-27 14:57:18
【问题描述】:
我找不到任何快速的答案。在表格行 (<tr>) 元素上使用 display: flex; 很酷吗?
感觉不对。但是如果没有兼容性问题我会这样做
Here's a codepen of what I'm talking about
input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
position: absolute;
left: -9999px;
}
input[type="radio"]:checked+label,
input[type="radio"]:not(:checked)+label {
position: relative;
padding-left: 28px;
cursor: pointer;
line-height: 20px;
display: inline-block;
color: #666;
}
input[type="radio"]:checked+label:before,
input[type="radio"]:not(:checked)+label:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 18px;
height: 18px;
border: 2px solid #ddd;
border-radius: 100%;
background: #fff;
}
input[type="radio"]:checked+label:after,
input[type="radio"]:not(:checked)+label:after {
content: '';
width: 14px;
height: 14px;
background: #fc8f3f;
position: absolute;
top: 4px;
left: 4px;
border-radius: 100%;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
input[type="radio"]:not(:checked)+label:after {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
input[type="radio"]:checked+label:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
.dots-wrap form {
width: 700px;
}
.dots-wrap div {
width: 900px;
}
.dots-wrap form,
.dots-wrap div {
display: flex;
justify-content: space-between;
}
.dots-wrap div label {
font-size: 11px;
}
h2.strikethrough {
position: relative;
z-index: 1;
width: 700px;
}
h2.strikethrough:before {
border-top: 2px solid #dfdfdf;
content: "";
margin: 0 auto;
/* this centers the line to the full width specified */
position: absolute;
/* positioning must be absolute here, and relative positioning must be applied to the parent */
top: 32px;
left: 0;
right: 0;
bottom: 0;
width: 95%;
z-index: -1;
}
.dots-wrap form div h2 {
display: flex;
justify-content: space-between;
}
.dots-wrap form div {
width: 100%;
}
.dots-wrap form div h2 p {
margin: 0px;
}
/*dasdfasdfasdfasdfasdfasdfasdf*/
<div class="dots-wrap">
<form action="#">
<div>
<h2 class="strikethrough">
<p>
<a href="#tab-t1">
<input type="radio" id="test1" name="radio-group" checked>
<label for="test1"></label>
</a>
</p>
<p>
<a href="#tab-t2">
<input type="radio" id="test2" name="radio-group">
<label for="test2"></label>
</a>
</p>
<p>
<a href="#tab-t3">
<input type="radio" id="test3" name="radio-group">
<label for="test3"></label>
</a>
</p>
<p>
<a href="#tab-t4">
<input type="radio" id="test3" name="radio-group">
<label for="test4"></label>
</a>
</p>
</h2>
</div>
</form>
<div>
<div>
<label for="test1">Marketing & Lead Generation</label>
</div>
<div>
<label for="test2">Underwriting</label>
</div>
<div>
<label for="test3">Customer Management</label>
</div>
<div>
<label for="test4">Fraud, Collections & Recoveries</label>
</div>
</div>
</div>
【问题讨论】:
-
您使用表格而不是 div 是否有原因?
-
它用于连接我的codepen中效果的点
标签: html css html-table flexbox