This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h3{ | |
color: #000000; /* テキスト色 */ | |
font-size: 1.25em; /* フォントサイズ */ | |
font-weight: bold; /* フォント太さ */ | |
background-color: #99cc00; /* 背景色 */ | |
position: relative; /*相対位置*/ | |
padding: 0.4em; /*内部余白*/ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function MultipleConsoleLogs(){ | |
for(let i=0; i < 10; ++i){ | |
console.log(i); | |
}; | |
}; |