You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/css/helpers.md
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -170,3 +170,21 @@ If you would like to hide any element only on mobile screens you can use the `.h
170
170
171
171
<p>If you can see the secret message above try resizing the window!</p>
172
172
```
173
+
174
+
## Turn off link-underline styles
175
+
176
+
You will probably have noticed that all links automatically have custom underline functionality:
177
+
178
+
```html
179
+
<divclass="p-3">
180
+
<ahref="https://emberjs.com/">Ember Homepage</a>
181
+
</div>
182
+
```
183
+
184
+
To get the style that we wanted we needed to implement a custom background image for all links instead of making use of the `text-decoration: underline` styles. If you have a link (or a set of links) that you would like to turn off this behaviour then you can use the `bg-none` helper to turn off this styling:
0 commit comments