تگ های فلکس برای من ارور میده و اجرا نمیشه
مثلا الن میخوام div فلکس رو به سمت راست صفحه ببرم ولی کار نمیکنه
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
background: #000;
width: 100%;
height: 1000px;
}
.fox{
width: 100px;
height: 100px;
background-color: aqua;
display: flex;
flex-direction: row;
justify-content: center;
}
</style>
</head>
<body>
<div class="box">
<div class="fox"></div>
</div>
</body>
</html>
لطفا کد ها رو کنار ``` رو قرار بدین
در مورد سوالتون: دقیق یادم نیست ولی display: flex; رو بالا هر استایل قرار بدین
قرار دادم بازم همونه
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
background: #000;
width: 100%;
height: 1000px;
}
.fox{
display: flex;
width: 100px;
height: 100px;
background-color: aqua;
flex-direction: row;
justify-content: center;
}
</style>
</head>
<body>
<div class="box">
<div class="fox"></div>
</div>
</body>
</html>
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟