i don't learn the usual way. i reverse engineer. first time i learned html 10 years ago was by doing view source - and i still do. it was both fun and productive for me. and so i did.
but it took me a while before i found what i was trying to look for (and i don't even know what i was looking for, trouble with reverse *engineering).
*now, i'm reminded of the movie: paycheck with ben affleck. it was about reverse engineering. it was a good one. you should watch it
going back...
i was looking for:
let me leave you at that and i'll go study some more..
but it took me a while before i found what i was trying to look for (and i don't even know what i was looking for, trouble with reverse *engineering).
*now, i'm reminded of the movie: paycheck with ben affleck. it was about reverse engineering. it was a good one. you should watch it
going back...
i was looking for:
- a website with rwd(responsive web design)
- clean readable codes(codes that uses line breaks)
- line that would make me think(this is the "i dont know what i was looking for" part)
and i found:
- foodsense.is
- its clean css code
- and that line that made me think: line 1185
@media only screen and (min-width: 768px) and (max-width: 991px) {so, i searched high and low... and found:
That’s a media query. It prevents the CSS inside it from being run unless the browser passes the tests it contains. - Paul D. Waite on stackoverflow.comhere's a recommended reading to understand @media better, courtesy of w3.org
let me leave you at that and i'll go study some more..