.parent {
margin: 10px -10px -10px;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
.child {
align-self: center;
flex-basis: calc(50% - 10px);
max-width: calc(50% - 10px);
margin: 5px;
font-size: 0;
}
}
.parent {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.child {
margin: 5px; //子要素同士の間の幅10pxの場合
}
.child {
flex-basis: calc(50% - 10px); //1行に2個表示の場合
flex-basis: calc(33.33% - 10px); //1行に3個表示の場合
flex-basis: calc(25% - 10px); //1行に4個表示の場合
}
子要素のmargin分、幅が狭くなるので、親要素にマイナスmarginを指定。
両端とbottomはマイナス、topはプラス。
.parent {
margin: 10px -10px -10px; //top left/right bottom
}
justify-content: space-between;を指定+子要素にmarginなしだと、最後の行の要素が端に寄る。
clearfixのcssが設定されているときに、divにafter要素が追加されていると、子要素の並びにafter要素が入るため。
justify-content: flex-start;を指定+子要素にmargin設定+flex-basisでcalcで指定する幅からmargin分引くと寄らない。
flexboxのjustify-contentでspace-betweenをすると、余った要素が両端によってしまうのを直したい
子要素に画像があり画像の下に余分な空白ができる場合、font-size: 0を指定すると消える。
.child {
font-size: 0;
}
flexショートハンド(まとめて指定)のcalcはIEで効かないため、使用しない。flex-basisで指定。
.child {
flex: 0 1 calc(50% - 10px); //IEで崩れる
flex-basis: calc(50% - 10px); //IEでも崩れない
}
flexboxのバグに立ち向かう(flexboxバグまとめ)
IEでカラム落ちするので、max-widthも同時に指定する。
IEではpaddingを指定しているとき、box-sizing: border-boxが効かない。
.child {
flex-basis: 340px;
max-width: 340px;
}
The post Flexbox CSS コードまとめ first appeared on risalog.]]>abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:top;background:0 0;box-sizing:border-box}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:0 0}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}ul{list-style:none}a{text-decoration:none;color:#000}
html {
width: 100%;
height: 100%;
background: #fff;
font-size: 62.5%;
}
body {
width: 100%;
position: relative;
text-align: center;
font-size: 1rem;
font-weight: 300;
color: #000;
letter-spacing: 0;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "Hiragino Sans", Meiryo, sans-serif;
}
header, main, section {
display: block;
width: 100%;
margin: 0 auto;
&::after {
content: "";
display: block;
clear: both;
height: 0;
visibility: hidden;
}
}
.bold {
font-weight: 600;
}
a {
color: #000;
cursor: pointer;
&:hover {
opacity: 0.7;
transition: all 0.5s ease;
}
}
font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "Hiragino Sans", Meiryo, sans-serif;
font-family: Arial, "Yu Gothic Medium", YuGothic, sans-serif;
font-family: 'Noto Sans JP', sans-serif;
The post reset.min.css / styles.scss first appeared on risalog.]]>本番サーバーのフォントを読み込んでいるためのセキュリティエラー。
同サーバーから読み込むと表示される。
CSS変更前
@font-face {
font-family: 'design_plus';
src: url('fonts/design_plus.woff?v=1.0');
}
CSS変更後
@font-face {
font-family: "design_plus";
src: url('/****/wp-content/themes/****/fonts/design_plus.woff?v=1.0') ;
}
The post WordPressテストサイトでWebフォントが表示されないとき first appeared on risalog.]]>