CSS 배포
2305 단어 CSS
중간에 있고 싶은데 도저히 못하겠어요.
하나하나 게재하다.
Haml은 통용됩니다. .payment-information
.payment-information__form
%span.payment-information__form--item-price ¥680
%span.payment-information__form--item-shipping 送料込み
.payment-information__form--point
%button{:type => "submit"} ポイントはありません
1-1 SCSS
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
display: flex;
justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
1-2
2-1
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
//display: flex;
//justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
2-2
3-1
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
display: flex;
justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
3-2
부모 요소 텍스트 정렬:center;하고 있으니까 다 한가운데로 가는 줄 알았는데 안 갈 줄 몰랐어요.
서브원소:flex;있어서요.
하위 원소의display:flex;삭제 또는justify-content:center;기술로 해결!
justify-content는'display:flex'입니다.한 놈을 어디에 두었는지 지정할 수 있다.
Reference
이 문제에 관하여(CSS 배포), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/nyohon22/items/7ad3fe8e515462aaedd7
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
.payment-information
.payment-information__form
%span.payment-information__form--item-price ¥680
%span.payment-information__form--item-shipping 送料込み
.payment-information__form--point
%button{:type => "submit"} ポイントはありません
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
display: flex;
justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
1-2
2-1
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
//display: flex;
//justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
2-2
3-1
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
display: flex;
justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
3-2
부모 요소 텍스트 정렬:center;하고 있으니까 다 한가운데로 가는 줄 알았는데 안 갈 줄 몰랐어요.
서브원소:flex;있어서요.
하위 원소의display:flex;삭제 또는justify-content:center;기술로 해결!
justify-content는'display:flex'입니다.한 놈을 어디에 두었는지 지정할 수 있다.
Reference
이 문제에 관하여(CSS 배포), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/nyohon22/items/7ad3fe8e515462aaedd7
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
//display: flex;
//justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
2-2
3-1
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
display: flex;
justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
3-2
부모 요소 텍스트 정렬:center;하고 있으니까 다 한가운데로 가는 줄 알았는데 안 갈 줄 몰랐어요.
서브원소:flex;있어서요.
하위 원소의display:flex;삭제 또는justify-content:center;기술로 해결!
justify-content는'display:flex'입니다.한 놈을 어디에 두었는지 지정할 수 있다.
Reference
이 문제에 관하여(CSS 배포), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/nyohon22/items/7ad3fe8e515462aaedd7
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
.payment-information{
width:320px;
height: 300px;
margin: 0 auto;
background-color: aqua;
text-align: center;
&__form{
display: flex;
justify-content: center;
&--item-price{
font-weight: bold;
}
&--item-shipping{
color: red;
font-weight: normal;
margin-left: 20px;
}
}
}
3-2
부모 요소 텍스트 정렬:center;하고 있으니까 다 한가운데로 가는 줄 알았는데 안 갈 줄 몰랐어요.
서브원소:flex;있어서요.
하위 원소의display:flex;삭제 또는justify-content:center;기술로 해결!
justify-content는'display:flex'입니다.한 놈을 어디에 두었는지 지정할 수 있다.
Reference
이 문제에 관하여(CSS 배포), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/nyohon22/items/7ad3fe8e515462aaedd7
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(CSS 배포), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/nyohon22/items/7ad3fe8e515462aaedd7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)