On one hand I think this is really neat. On the other this is why I have never taken front end development seriously enough to spend any real time learning it [0]. From the get go it always seemed like the rules were arbitrary and involved lots of guessing to get things right. I know this isn't actually true but it felt true enough early on to poison my mind to it. [0] Not something I'm proud of and I know front end…
A div that looks different in every browser
31–40 of 133 posts
Re: A div that looks different in every browser
#32Earlier quoted context omitted.
What is the status quo on vertical alignment if I may ask..
Flex box https://philipwalton.github.io/solved-by-flexbox/demos/verti...
And this exposes the problem with the current state of the art: yes, you can probably get flexbox to do what you want [@] if you know how. But if you don't know how, trying to figure it out is still very hard. You should be able to write:
stuff
or stuff
There is really no reason that should not Just Work. (The tag has worked for 20 years, notwithstanding that it has been deprecated for most of that time.)---
[@] What if I want to put something in the lower left or upper right hand corner?
Re: A div that looks different in every browser
#33And GoogleBot seems to follow Safari's rendering instead of Chrome: https://developers.google.com/speed/pagespeed/insights/?url=...
I wonder if that’s because they’re just running an older version of WebKit/blink.
Re: A div that looks different in every browser
#34Earlier quoted context omitted.
Honestly its getting rarer and rarer to find things like this, most things that reasonable people want to do "just work." You have to go to considerable effort to come up with a case like this.
What is the status quo on vertical alignment if I may ask..
Re: A div that looks different in every browser
#35On one hand I think this is really neat. On the other this is why I have never taken front end development seriously enough to spend any real time learning it [0]. From the get go it always seemed like the rules were arbitrary and involved lots of guessing to get things right. I know this isn't actually true but it felt true enough early on to poison my mind to it. [0] Not something I'm proud of and I know front end…
> From the get go it always seemed like the rules were arbitrary and involved lots of guessing to get things right. I know this isn't actually true but it felt true enough early on to poison my mind to it. I guess you aren't into Deep Learning either ;)
It's arbitrary almost all the way down.
Re: A div that looks different in every browser
#36Re: A div that looks different in every browser
#37I would think undefined behavior would be helpful in browser fingerprinting.
Re: A div that looks different in every browser
#38On one hand I think this is really neat. On the other this is why I have never taken front end development seriously enough to spend any real time learning it [0]. From the get go it always seemed like the rules were arbitrary and involved lots of guessing to get things right. I know this isn't actually true but it felt true enough early on to poison my mind to it. [0] Not something I'm proud of and I know front end…
This isn't really a spec thing. Its more a manifestation of undefined behavior. Even c++ compilers have undefined behavior.
Re: A div that looks different in every browser
#39On one hand I think this is really neat. On the other this is why I have never taken front end development seriously enough to spend any real time learning it [0]. From the get go it always seemed like the rules were arbitrary and involved lots of guessing to get things right. I know this isn't actually true but it felt true enough early on to poison my mind to it. [0] Not something I'm proud of and I know front end…
Re: A div that looks different in every browser
#40Earlier quoted context omitted.
Flex box https://philipwalton.github.io/solved-by-flexbox/demos/verti...
The code shown on that page actually doesn't work, though the code in the github repo does. And this exposes the problem with the current state of the art: yes, you can probably get flexbox to do what you want [@] if you know how. But if you don't know how, trying to figure it out is still very hard. You should be able to write: stuff or stuff There is really no reason that should not Just Work. (The tag has worked f…