나는 내 포트폴리오 웹 사이트에서 작업 중이며 문제가 있습니다. 나는 텍스트와 이미지로 서로 옆에 서있는 두 div를 만들려고합니다. 이것은 쉽지만 flexbox를 사용하면 반응이 좋지 않습니다. 코드 (나는 바로 그것을 얻을하지 않기 때문에, 인 flexbox없이) 내가 이것을 사용두 스타일의 div가 서로 옆에 있음 [flexbox/responsive]
This is what I try to achieve with flexbox, but this is just with plain html and css
:
#best_cases {
height : 800px;
}
#first_case {
width : 650px;
height : 577px;
float : left;
margin : 95px 0 0 211px;
border-radius : 5px 5px 0px 5px;
background : #1f2930;
}
#first_case h2 {
margin-left : 67px;
padding-top : 20px;
color : #ffffff;
font-family : montserrat bold,
arial,
verdana;
font-size : 2.5em;
/* 40/16 */
}
#first_case p {
margin-left : 67px;
padding-top : 8px;
color : #ffffff;
font-family : montserrat light,
arial,
verdana;
font-size : 1.125em;
line-height : 26px;
/* 18/16 */
}
#first_case img {
margin-top : 72.6px;
margin-left : 70px;
border-bottom-right-radius : 5px;
}
#second_case {
width : 650px;
height : 577px;
float : left;
margin : 95px 0 0 191px;
border-radius : 5px;
background : #1f2930;
}
#second_case h2 {
margin-right : 67px;
padding-top : 20px;
color : #ffffff;
text-align : right;
font-family : montserrat bold,
arial,
verdana;
font-size : 2.5em;
/* 40/16 */
}
#second_case p {
margin-right : 67px;
padding-top : 8px;
color : #ffffff;
text-align : right;
font-family : montserrat light,
arial,
verdana;
font-size : 1.125em;
line-height : 26px;
/* 18/16 */
}
#second_case img {
margin-top : 72.6px;
border-bottom-left-radius : 5px;
}
<div id="best_cases">
\t \t \t <div id="first_case">
\t \t \t \t <h2>T3Qvi3w</h2>
\t \t \t \t <p>Shop voor het kopen van <br />
\t \t \t \t \t smartphone accessoires.</p>
\t \t \t \t <img src="img/TeQview_small.png" alt="" width="580" height="auto" />
\t \t \t </div>
\t \t \t <div id="second_case">
\t \t \t \t <h2>Studieplaen</h2>
\t \t \t \t \t <p>De nieuwste manier om <br />
\t \t \t \t \t te plannen.</p>
\t \t \t \t \t <img src="img/Studieplanner_small.png" alt="" width="580" height="380px" />
\t \t \t </div>
\t \t </a>
\t </div>
지금 무엇을 너희들 희망 해야 할 것. 나는 매우 도움이 될 것이다.
미리 감사드립니다.
... 당신이 (등 마진, 높이, 폭,) 모든 고정 된 값을 제거하고 대신 %를 사용하거나, 내용이 보자 필요 반응에 좋지 않다 필요한 공간 –