生成 字体加粗 好看的字体样式添加字体阴影背景半透明 css代码
以下是一个例子,可以根据需要进行调整:
<style>
.bold-text {
font-family: Arial, sans-serif; /* 字体 */
font-weight: bold; /* 字体加粗 */
text-shadow: 2px 2px 2px #666; /* 字体阴影 */
background-color: rgba(255, 255, 255, 0.5); /* 背景半透明 */
padding: 10px; /* 内边距 */
border-radius: 10px; /* 圆角 */
box-shadow: 2px 2px 2px #666; /* 盒子阴影 */
}
</style>
<div class="bold-text">
这是一个加粗的字体样式,带有阴影和半透明背景。
</div>
原文地址: https://www.cveoy.top/t/topic/1Es 著作权归作者所有。请勿转载和采集!