下記、アコーディオンメニューの中に、テーブルを入れ込みたいのですが、うまく表として反映されません。
正しいHTMLを教えてください。
下記、URLのテーブルを入れ込みたいです。
宜しくお願い致します。
うまく表として反映されていない状態のコードをご提示いただけますか?
【アコーディオンメニュー・CSS】
.cp_actab {
position: relative;
overflow: hidden;
width: 100%;
margin: 0 auto;
color: #000000;
}
.cp_actab input {
position: absolute;
z-index: -1;
opacity: 0;
}
.cp_actab label {
font-weight: bold;
line-height: 4;
position: relative;
display: block;
padding: 0 0 0 1em;
cursor: pointer;
margin: 0 0 1px 0;
background: #FFFFFF;
border-bottom: solid 2px #dedede;
}
.cp_actab .cp_actab-content {
overflow: hidden;
max-height: 0;
-webkit-transition: max-height 0.35s;
transition: max-height 0.35s;
color: #000000;
background: #FFFFFF;
}
.cp_actab .cp_actab-content p {
margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
max-height: 20em;
}
/* Icon */
.cp_actab label::after {
line-height: 3;
position: absolute;
top: 0;
right: 0;
display: block;
width: 3em;
height: 3em;
-webkit-transition: all 0.35s;
transition: all 0.35s;
text-align: center;
padding-top: 5px;
}
.cp_actab input[type=checkbox] + label::after {
content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
transform: rotate(315deg);
}
【テーブルHTML】
<table class="shousai">
<tr>
<th>名前</th><td>さとう</td>
</tr>
<tr>
<th>年齢</th><td>19</td>
<tr>
<th>年齢</th><td>19</td>
<tr>
<th>年齢</th><td>19</td>
<tr>
<th>年齢</th><td>19</td>
<tr>
<th>血液型</th><td>A型</td>
</tr>
</table>
【テーブルCSS】
table.shousai.th{/*thに対して*/
color: #000000;/*文字色*/
background: #d3d3d3;/*背景色*/
border: 1px solid;
border-color: #a9a9a9;
}
table.shousai.td{/*tdに対して*/
color: #000000;/*文字色*/
background: #ffffff;/*背景色*/
border: 1px solid;
border-color: #a9a9a9;
}
/*余白指定は省略*/
上記になります。
HTML・CSSともに、ネット上からコピーしてきた物です。
初心者で基礎が分かってなく、所々おかしいところがあると思いますが、
ご教示お願い致します。
「うまく表として反映されません」とのことですが、具体的には何が起きていますか?
テーブルの罫線が分割されている、とかですか?
テーブルのCSSの内容が反映されません。(枠線、バックカラー)
問題を把握しました。
回答1件
あなたの回答
tips
プレビュー