Смотрите, у меня есть код:
<!DOCTYPE html>
<html>
<head>
<title>Tixland Edits: New File</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body {
text-align: left;
margin: 10;
font-family: monospace;
font-size: 25px;
background-image: url("images/bi.jpg");
background-position: center;
background-color: rgb(53, 52, 52);
}
.editorSheet {
width: 80vw;
min-height: 100vw;
margin-left: 10vw;
border: solid;
border-width: 0px;
text-align: left;
background-color: rgb(70, 70, 70);
-webkit-box-shadow: 6px 10px 9px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 6px 10px 9px 0px rgba(0, 0, 0, 0.75);
box-shadow: 6px 10px 9px 0px rgba(0, 0, 0, 0.75);
padding: 15px;
}
h1 {
font-size: 40px;
font-family: monospace;
font-weight: 900;
color:rgb(207, 207, 207)
}
</style>
</head>
<body>
<h1>TixLand Edits: Текстовый редактор</h1>
<div id="editor" contenteditable="true" class="editorSheet">
</div>
<script>
if (localStorage.getItem('text_in_editor') !== null) {
document.getElementById('editor').innerHTML = localStorage.getItem('text_in_editor');
}
document.addEventListener('keydown', function (e) {
localStorage.setItem('text_in_editor', document.getElementById('editor').innerHTML);
});
</script>
</body>
</html>
И как мне сделать так, чтобы текст в "едиторе" (.editorSheet) который я ввожу был такого же цвета как и заголовок h1? Скажите хотя бы просто как поменять цвет на любой.
Признателен за ЛЮБУЮ помощь!