Outline is drawn incorrectly on Chrome if outline-style is set to “solid” (and not “auto”)

坚强是说给别人听的谎言 提交于 2019-11-28 08:44:01

问题


I am seeing this behavior for Chrome on a Mac (haven't tested it on Windows yet). Also, as this work is for a chrome extension, I am okay with getting a solution that is relevant for Chrome only (does not have to work cross-browser for now).

Issue: The browser seems to be drawing the "outline" differently around elements depending on whether the outline-style is "auto" or not.

When drawing an outline around an tag that is the parent of an "img", for something like this:

 <a href="image.com">
   <img class="profile_photo_img" src="imageSrc.jpeg" width="50" alt="Steve Jobs" height="50">
 </a>
  • If the outline-style is "auto", the outline is drawn correctly. i.e. Chrome takes into account the dimensions of the inner image to render an outline around the tag. (see the green outline in the screenshot).

  • If the outline-style is "solid" or any other regular style, the outline is drawn only around the outer tag disregarding the dimensions of the inner child.

The CSS that I am applying looks like this:

.class-name:focus {
   outline: 4px auto #068065 !important;
   outline-offset: 2px !important;
 }

1) Is there a way to fix this or work around this i.e. have the browser draw the outline correctly for outline-style "solid" as well?

2) Where should I look to read more about this? Maybe some informal documentation or access to the relevant code?


回答1:


... Set display:inline-block to your link, so layout is activated :)

test : http://codepen.io/gcyrillus/pen/GFzrs

I see no auto outline in FF 21.0



来源:https://stackoverflow.com/questions/17146707/outline-is-drawn-incorrectly-on-chrome-if-outline-style-is-set-to-solid-and-n

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!