C
C
caof192020-04-17 12:47:00
css
caof19, 2020-04-17 12:47:00

How to make a dotted border on a letter?

Hello, such a question is it possible to make the text have only borders visible and they consist of dots? Without using svg?
Example

s12vn7

Answer the question

In order to leave comments, you need to log in

2 answer(s)
L
Lynn "Coffee Man", 2020-04-17
@caof19

UPD: didn't notice the comment about "no SVG".
Not possible in CSS as far as I know.
It is possible in SVG
https://dabblet.com/gist/21763d52a6792687176d8b136...

<svg width="300" height="100">
<text x="10" y="80" fill="none"
    stroke="red" stroke-width="1" stroke-dasharray="5 2"
    font-size="80" font-family="sans-serif" font-weight="bold">Hello</text>
</svg>

5e99862e86f0f137298968.png

T
Type Programmer, 2020-04-17
@Oleg2002pr

Hello, the image is not opening for me. Have you tried choosing a font for your purposes? Might help.)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question