Post 9lPBIRft4ze4tuRJGC by RoboePi@mastodon.social
(DIR) More posts by RoboePi@mastodon.social
(DIR) Post #9lOhzf8Zu6HgTwYCzQ by amolith@masto.nixnet.xyz
2019-07-31T04:27:15Z
0 likes, 0 repeats
😁 🔫
(DIR) Post #9lOl3z1qBqFTC89Rjs by amolith@masto.nixnet.xyz
2019-07-31T05:01:39Z
0 likes, 0 repeats
Can I not just say I want the text this far from the top at all times and it actually happen without me adding 2634859 media queries
(DIR) Post #9lOlQKWCyKTyDO0krI by amolith@masto.nixnet.xyz
2019-07-31T05:05:41Z
0 likes, 0 repeats
There *has* to be a better way than using padding-top in a media query
(DIR) Post #9lOmlbnm0ZITqywBXc by gamayun@mastodon.social
2019-07-31T05:20:44Z
0 likes, 0 repeats
@amolithGlad I'm not the only one who looks at CSS like this...
(DIR) Post #9lOxmdSkPwv2n2nM92 by syme@masto.nixnet.xyz
2019-07-31T07:24:10Z
0 likes, 0 repeats
@amolith Do you use (r)em?
(DIR) Post #9lPBIRft4ze4tuRJGC by RoboePi@mastodon.social
2019-07-31T09:55:34Z
0 likes, 0 repeats
@amolith Life-changing tips for CSS newcomers in 2019:- Change the box model to a more logical one (https://css-tricks.com/box-sizing/):```html { box-sizing: border-box;}*, *:before, *:after { box-sizing: inherit;} ```- Use flexbox for layouts (https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox). Learn it the funny way:https://flexboxfroggy.com/
(DIR) Post #9lPBNDQBV4xk8vMwsa by RoboePi@mastodon.social
2019-07-31T09:56:27Z
0 likes, 0 repeats
@amolith Life-changing tips for CSS newcomers in 2019:- Change the box model to a more logical one (https://css-tricks.com/box-sizing/):```csshtml {box-sizing: border-box;}*, *:before, *:after {box-sizing: inherit;} ```- Use flexbox for layouts (https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox). Learn it the funny way:https://flexboxfroggy.com/