文本周围的圆形边框

Aym*_*man 2 html css

如何使用 css 应用图像中显示的效果

<div class="textstyle"><b>Sales Cash Invoice</b></div>
Run Code Online (Sandbox Code Playgroud)

文本

Ste*_*vić 10

HTML:

<div class="textstyle">Sales Cash Invoice</div>

CSS:

.textstyle {
    background-color: gray; /* Changing background color */
    font-weight: bold; /* Making font bold */
    border-radius: 20px; /* Making border radius */
    width: auto; /* Making auto-sizable width */
    height: auto; /* Making auto-sizable height */
    padding: 5px 30px 5px 30px; /* Making space around letters */
    font-size: 18px; /* Changing font size */
}
Run Code Online (Sandbox Code Playgroud)

如果要添加字体,只需在 css 中添加新行即可font-family: font_name;。我不能这样做,因为我不知道图像上的字体是什么。

要获得更精确的颜色,请使用拾色器