問題一覧
1
テキストに下線
obj.style.A
textDecoration = "underline";
2
/ブロックの内側に30pxの余白
obj.style.A
padding = "30px";
3
// 文字のサイズを15pt
// obj.style.A
fontSize = "15pt";
4
// 背景色を#ffff00
// obj.style.A
backgroundColor = "#ffff00";
5
// 文字の色を赤 red
// obj.style.A
color = "red";
6
// ブロックを非表示(場所は確保)
// obj.style.A
visibility = "hidden";
7
// ブロックを非表示(場所は確保しない)
// obj.style.A
display = "none";
8
// 黒い点線3pxのボーダーを設定
// obj.style.A
border = "3px dotted #000000";
問題一覧
1
テキストに下線
obj.style.A
textDecoration = "underline";
2
/ブロックの内側に30pxの余白
obj.style.A
padding = "30px";
3
// 文字のサイズを15pt
// obj.style.A
fontSize = "15pt";
4
// 背景色を#ffff00
// obj.style.A
backgroundColor = "#ffff00";
5
// 文字の色を赤 red
// obj.style.A
color = "red";
6
// ブロックを非表示(場所は確保)
// obj.style.A
visibility = "hidden";
7
// ブロックを非表示(場所は確保しない)
// obj.style.A
display = "none";
8
// 黒い点線3pxのボーダーを設定
// obj.style.A
border = "3px dotted #000000";