The following code is intended to remove the caret/arrow from a select option list.
But the app.css is preventing this somehow.... There is a ton of code in that file...
And im new to web development. Could someone help me zero in on what could be overwriting my code.
The browser source looks fine. But is there some other layer of rendering that im not catching?
How is it possible that my inline style with importance is being ignored?
if you put this code in welcome blade it works.
if you put this code in layouts.app blade it fails because of app.css.
Its not a browser problem. Im using chrome.
I have isolated the problem to
Mix(css/app.css);
But with laravel that file could be anywhere and everywhere.
I believe its a tailwind issue. My inspection window shows that the class is modified and my webkit setting is removed. So tailwind has a design flaw and is ignoring my !important.
Im guessing there is a parser or some js that im not aware of.
But i dont know which instance of app.css, to look in...