セレクタ:.box
padding-left | 5% |
---|---|
padding-right | 5% |
max-width | 1000px |
margin-left | auto |
margin-right | auto |
セレクタ:.box img
margin-bottom | 16px |
---|
セレクタ:.box
display | flex |
---|---|
align-items | start |
gap | 40px |
セレクタ:.box img
width | 50% |
---|---|
max-widh | 400px |
セレクタ:.box
padding | 0 |
---|
https://www.youtube.com/embed/ag5d7c3JVek?si=ZISxWCJhRyTBUxke
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="box">
<img src="sample.jpg" alt="">
<p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
</div>
</body>
</html>
.box {
padding-left: 5%;
padding-right: 5%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.box img {
margin-bottom: 16px;
}
@media screen and (min-width:576px) {
.box {
display: flex;
align-items: start;
gap: 40px;
}
.box img {
width: 50%;
max-width: 400px;
}
/*========min-width:576px============*/
}
@media screen and (min-width:1000px) {
.box {
padding: 0;
}
/*========min-width:100px============*/
}