I'm working on an emailing and my client works with outlook 2013. When they click on an image that has a link, it creates a border that looks like an editing border. Is there any way to fix this?
Asked
Active
Viewed 162 times
0
-
have you tried outline:0 on focus ? https://stackoverflow.com/questions/34635588/how-do-i-remove-outline-on-link-click , `a:focus { outline:0}` – Mihai T Mar 13 '19 at 15:18
-
Hello! Welcome to StackOverflow! Please read [How do I ask a good question?](https://stackoverflow.com/help/how-to-ask) in the [Help Center](https://stackoverflow.com/help). – Vlad Mar 13 '19 at 15:19
-
Are you using vml? If yes then that is the functionality of Outlook and can not be changed. – Syfer Mar 14 '19 at 07:10
1 Answers
0
You can try all these options, one of them should work:
Set a border as an attribute of the element like
<img src="..." alt="..." border="0">
On CSS set
a img { border: none; }
on CSS set
a {outline : none;}
on CSS set
a img {outline : none;}

Rafael Perozin
- 573
- 7
- 20