如何更改浏览器地址栏内的图标右对齐
How to change favicon right align inside the browser address bar
我遇到了这个问题,不知道如何更改我的图像图标地址以右对齐显示?
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
更新成这样,但没有变化
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" style="text-align: right;"/>
您不能这样做,因为样式属性在 link 标签中不可用。此外,您无法更改浏览器的外观,除非他们更改其外观并将图标移至右侧。
我遇到了这个问题,不知道如何更改我的图像图标地址以右对齐显示?
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
更新成这样,但没有变化
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" style="text-align: right;"/>
您不能这样做,因为样式属性在 link 标签中不可用。此外,您无法更改浏览器的外观,除非他们更改其外观并将图标移至右侧。