HTML/CSS Notes
HTML/CSS Notes https://www.udemy.com/share/101Wtc3@nrNru_7FItWgNYr9dsbt2PchCQu8-S9Szxzf-m98o07RxMT0dFWclmQPFJAgQney/ global setting * { /* border-top: 10px solid #1098ad; */ margin: 0 ; padding: 0 ; } responsive image .post-img { width: 100 % ; height: auto ; } responsive container .container { width: 800 px ; /* margin-left: auto; margin-right: auto; */ margin: 0 auto ; } position absolute relative h2 { /* background-color: orange; */ position: relative ; } h2 ::before { content: "TOP" ; background-color: #ffe70e ; color: #444 ; font-size: 16 px ; font-weight: bold ; display: inline-block ; padding: 5 px 10 px ; position: absolute ; top: -10 px ; right: -25 px ; } body { color: #444 ; font-family: sans-serif ; border-top:...