This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="./style.css" /> | |
</head> | |
<body> | |
<div class="IE6orLess">IE6orLess</div> | |
<div class="IE7orLess">IE7orLess</div> | |
<div class="IE8orLess">IE8orLess</div> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
.containerL{ background:LightGrey; display:inline-block; width:45%; height:800px; float:left; } | |
.containerS{ background:LightGrey; display:inline-block; width:45%; height:400px; float:right; margin:200px 0; } | |
.marginL { background:Gainsboro; display:inline-block; width:10%; height:352px; } | |
.marginS { background:Gainsboro; display:inline-block; width:10%; height:152px; } | |
.stickyT { background:LightPink; display:inline-block; width:33%; height: 32px; float:left; text-align:center; line-height:32px; } |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
.containerL{ background:LightGrey; display:inline-block; width:1100px; height:6em; } | |
.containerS{ background:LightGrey; display:inline-block; width: 500px; height:6em; margin:0 300px; } | |
.marginL { background:Gainsboro; display:inline-block; width: 400px; height:2em; float:left; } | |
.marginS { background:Gainsboro; display:inline-block; width: 100px; height:2em; float:left; } | |
.stickyL { background:LightPink; display:inline-block; width: 100px; height:2em; float:left; text-align:center; line-height:2em; } |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body{ margin:0; padding:0; } | |
.contentsItem{ background:LightPink; height:400px; } | |
.stickyFooter{ background:LimeGreen; height: 2em; } | |
.above-Footer{ | |
min-height: calc(100vh - 2em); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body{ margin:0; padding:0; } | |
.quarterSplit{ background:MintCream; text-align:center; width:23%; margin:0 1%; float:left; } | |
.howToUseDemo{ background:LightBlue; text-align:center; } | |
.contentsItem{ background:LightPink; text-align:center; height:400px; line-height:400px; } | |
.normalFooter{ background:LimeGreen; text-align:center; height: 2em; line-height: 2em; } |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body{ margin:0; padding:0; } | |
html, body { height: 100%; } | |
.contentsItem{ background:LightPink; height:400px; } | |
.stickyFooter{ background:LimeGreen; height: 2em; } | |
.above-Footer{ |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="style.css" /> | |
<style type="text/css"> | |
.pureCssThreeLinesIcon{ font-size: 32px; } | |
.pureCssCrossLinesIcon{ font-size: 32px; } | |
</style> | |
</head> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="style.css" /> | |
<style type="text/css"> | |
.pureCssThreeLinesIcon{ font-size: 32px; display: inline-block; } | |
#pureCssThreeLinesSwitch{ display: none; } | |
</style> | |
</head> |
This file contains hidden or 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
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Pure CSS Three Lines Menu with :checked</title> | |
<link rel="stylesheet" href="style.css"> | |
<style> | |
#nav-switch + .nav-window > .nav-sensor { border-radius: 20%; } /* for Chrome bug? */ | |
</style> |
This file contains hidden or 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
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> --> | |
<title>Pure CSS Modal Window with :checked</title> | |
<link rel="stylesheet" href="style.css"> | |
<style> | |
body{ margin:0; padding:0; } | |
.modalWindow { opacity: 0; visibility: hidden; } /* for Chrome bug? */ |
OlderNewer