Copy link to clipboard
Copied
Hi,
I want to create a hyperlink of a selected text which has several styles – e.g. here italic and bold-italic. But DW (CC) does not overtake the selected text to the dialog box:
... as it does if it would have only one or no style:
Do you call it a bug? 😉 resp. 😞
Thanks!
mycc
No this is not a bug. Link styles come from your CSS code.
Example CSS:
a {
text-decoration:none;
font-weight:bold;
font-style: italic;
color:darkturquoise;
}
HTML:
<a href="https://example.com">Some Link</a>
Copy link to clipboard
Copied
No this is not a bug. Link styles come from your CSS code.
Example CSS:
a {
text-decoration:none;
font-weight:bold;
font-style: italic;
color:darkturquoise;
}
HTML:
<a href="https://example.com">Some Link</a>