文本区域高度不适合内容

Textarea height does not fit content

我正在开发一个简单的代码编辑器应用程序,我偶然发现了一个视觉错误,基本上文本区域比容器高一点。

这是index.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="index.css">
</head>
<body class="page">
    <div class="files">

    </div>
    <div class="container">
        <div class="lines">

        </div>
        <div class="editor">
            <textarea></textarea>
        </div>
    </div>
</body>
</html>

这是index.css:

.lines {
    height: 100%;
    background-color: black;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #34495e;
}

.editor {
    height: 100%;
    flex: 20;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.page {
    height: 80vh;
    margin: 0;
    padding: 0;
}

textarea {
    width: 100%;
    height: 100%;
    resize: none;
    border: none;
    outline: none;
    background-color: #2c3e50;
}

.files {
    height: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.file {
    
}

.lines {
    height: 100%;
    background-color: black;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #34495e;
}

.editor {
    height: 100%;
    flex: 20;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.page {
    height: 80vh;
    margin: 0;
    padding: 0;
}

textarea {
    width: 100%;
    height: 100%;
    resize: none;
    border: none;
    outline: none;
    background-color: #2c3e50;
}

.files {
    height: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.file {
    
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="index.css">
</head>
<body class="page">
    <div class="files">

    </div>
    <div class="container">
        <div class="lines">

        </div>
        <div class="editor">
            <textarea></textarea>
        </div>
    </div>
</body>
</html>

我已经尝试了所有方法但找不到解决方案,在 Whosebug 中搜索但找不到答案我认为这是由调整大小、边框和轮廓引起的,但显然这些都不是问题。

box-sizing: border-box; 添加到您的文本区域样式