Cześć, szukam jakim sposobem mógłbym wyrównać obrazek z tekstem, żeby mieli tą samą wysokość i żaden "nie wychodził poza szereg". Dodaję zdjęcie z kodem.
Zdjęcie: https://imgur.com/a/S4b42ed
<!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>Tic Tac Toe</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="title-container">
<div class="title-content">
<p>TIC TAC TOE<img src="tictactoe.jpg" alt="tictactoe logo"></p>
</div>
<div class="game-section"></div>
</div>
<script src="main.js"></script>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background: #222;
color: white;
font-family: 'Lato', sans-serif;
}
.container {
width: 100vw;
height: 100vh;
}
.title-container {
width: 60%;
height: 150px;
margin: 100px auto 0 auto;
background: red;
display: flex;
align-items: center;
}
.title-content {
width: 100%;
height: 100%;
background: #333;
display: flex;
justify-content: center;
align-items: center;
}
.title-content p {
font-size: 80px;
letter-spacing: 0.5rem;
}
.title-content img{
width: 110px;
border-radius: 50%;
}