Version 4
If the anchor URL is lazy loaded into it (which is common if you are using e.g. angular or react), the buttons don't have href on page load for some time and because of this style buttons inherit the text color for sometime and look ugly, it would be great if there was a way to disable this style inheritance on specific anchor tags.

arguably, what this form of lazy loading is doing is to first inject "anchors" into the page (<a> elements without an href), and only later turning them into actual links (<a href="..."). The more fundamental fix would probably be for the lazy load not to inject one type of content and then changing its nature, but rather starting off with injecting actual links (even if their href="#" or something).
Closing as a won't fix.
Most helpful comment
arguably, what this form of lazy loading is doing is to first inject "anchors" into the page (
<a>elements without anhref), and only later turning them into actual links (<a href="..."). The more fundamental fix would probably be for the lazy load not to inject one type of content and then changing its nature, but rather starting off with injecting actual links (even if theirhref="#"or something).