我是一位具有C ++和Python背景的程序员,正在学习JS,HTML和CSS。我目前正在通过一本名为《电子在行动》的书来学习电子。其中一个示例包含一个HTML代码,如下所示:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fire Sale</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<section class="controls">
<button id="new-file">New File</button>
<button id="open-file">Open File</button>
<button id="save-markdown">Save File</button>
<button id="revert">Revert</button>
<button id="save-html">Save HTML</button>
<button id="show-file">Show File</button>
<button id="open-in-default">Open in Default Application</button>
</section>
<section class="content">
<label for="markdown" hidden>Markdown Content</label>
<textarea class="raw-markdown" id="markdown"></textarea>
<div class="rendered-html" id="html"></div>
</section>
</body>
<script>
require('./renderer');
</script>
</html>
其样式表如下:
html {
box-sizing: border-box;
}
*, *::before, *:after {
box-sizing: inherit;
}
html, body {
height: 100%;
width: 100%;
overflow: hidden;
}
body , input {
font: menu;
}
textarea, input, div, button {
outline: none;
margin: 0;
}
.controls {
background-color: rgb(217, 241, 238);
padding: 10px 10px 10px 10px;
}
button {
font-size: 14px;
background-color: rgb(181, 220, 216);
}
button:hover {
background-color: rgb(156,, 198, 192);
}
button:active {
background-color: rgb(144, 182, 177);
}
button:disabled {
background-color: rgb(196, 204, 202);
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
min-width: 100vw;
position: relative;
}
.content {
height: 100vh;
display: flex;
}
.raw-markdown, .rendered-html {
min-height: 100%;
max-width: 50%;
flex-grow: 1;
padding: 1em;
overflow: scroll;
font-size: 16px;
}
.raw-markdown {
border: 5px solid rgb(238, 252, 250);;
background-color: rgb(238, 252, 250);
font-family: monospace;
}
请注意,CSS文件中还有一个额外的类,该类在HTML规范中找不到。由于作者尚未更新示例存储库,因此我必须问:.container在CSS中是否具有某种特殊含义?我用谷歌搜索,什么都没出现,所以我想没有,但是可以安全地问一下,因为我已经搜索过这本书,并且没有其他提及这种诱人的容器类。感谢您的帮助。