実現したいこと
Webサイトを作成しています。ボックスの中のvideo(動画部分)とテキスト部分をボックスの中で横並びにしたいです。
該当のソースコード
HTML
1<section class="tech"> 2 <a href="#"> 3 <iframe class="video" width="560" height="315" src="https://www.youtube-nocookie.com/embed/ccTikqRF9ls?controls=0&start=60" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> 4 <div class="tech-text"> 5 <div class="category">tech-No.1</div> 6 <p class="description">We offer industrial robots in a wide range of 7 versions with various.</p> 8 </div> 9 </a> 10 </section> 11
CSS
1.tech { 2 width: 1100px; 3 margin-bottom: 10px; 4 margin-right: 10px; 5 margin-left: 40px; 6 padding: 8px; 7 border-bottom: 3px solid; 8 border-radius: 5px; 9 background-color: #000000; 10 display: flex; 11} 12 13.tech .category { 14 margin: 15px 9px 10px; 15 color: #F7DC01; 16 letter-spacing: 1px; 17 font-family: "Bebas Neue",sans-serif; 18 font-size: 17px; 19} 20.tech .category::before { 21 content: ''; 22 display: inline-block; 23 width: 19px; 24 height: 19px; 25 margin-right: 5px; 26 border: 2px solid; 27 border-radius: 50%; 28 vertical-align: -5px; 29} 30.tech .description { 31 margin: 10px; 32 line-height: 1.5; 33} 34.tech > a { 35 display: block; 36 margin: -8px -8px -11px; 37 padding: 8px 8px 11px; 38 border-radius: inherit; 39 color: #FFF; 40 transition: all 0.3s; 41} 42.tech > a:hover { 43 box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.3); 44 opacity: 0.8; 45}
試したこと
displayをflexやinline-blockにしてみましたが、解決できませんでした。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/07 12:38
2021/07/07 12:41