<!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>
<style>
* {
margin: 0;
padding: 0;
}
body {
display: flex;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.test {
margin: 10px 30px;
}
.qustion {
font-size: 18px;
background: rgb(221, 234, 255);
color: black;
line-height: 40px;
margin-top: 20px;
border: 1px solid gray;
white-space: pre-line;
}
.answer {
text-indent: 2em;
background: rgb(98, 172, 214);
color: white;
opacity: 0;
transition: 1s ease-out;
white-space: pre;
}
.answer_show {
text-indent: 2em;
background: rgb(98, 172, 214);
color: white;
opacity: 0;<