Skip to content

Commit

Permalink
Tiny fix from preview
Browse files Browse the repository at this point in the history
  • Loading branch information
hata6502 committed Nov 1, 2024
1 parent 65a503b commit 526d49c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions techniques/css/dotted-underlines.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ <h2>Examples</h2>
<h3>Links with dotted underlines and colors that provides contrast ratio of 3:1 in wiki pages</h3>
<p>The links in pages are medium-light blue (<code>#4D6BD5</code>) and the surrounding text is black (<code>#111111</code>). Links have a contrast of 3.9:1 with the surrounding text. Links also have minimal dotted underlines to reduce visually distracting in wiki pages there are a large number of links in the block of text.</p>
<pre xml:space="preserve"><code class="language-css">body {
color: #111111;
color: #111111;
}

a {
color: #4D6BD5;
text-decoration: underline dotted;
color: #4D6BD5;
text-decoration: underline dotted;
}</code></pre>
<p class="working-example"><a href="../../working-examples/css-dotted-underline-link/">Working example of dotted underline link</a></p>
</section>
Expand Down
4 changes: 3 additions & 1 deletion working-examples/css-dotted-underline-link/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Allowing for text spacing without wrapping</title>
<title>Links with dotted underlines and colors that provides contrast ratio of 3:1 in wiki pages</title>
<style>
body {
max-width: 720px;
margin: 0 auto;
color: #111111;
}

Expand Down

0 comments on commit 526d49c

Please sign in to comment.