在reactjs和material ui中仅在单词的一半下划线?

发布于 2025-01-11 17:10:23 字数 742 浏览 0 评论 0原文

这就是我正在尝试重新创建的 这是我正在尝试重新创建的内容

这是我迄今为止所管理的内容在此处输入图像描述

我正在使用materialui和reactjs。这是代码。

bodyTitle: {
fontWeight: 800,
paddingTop: theme.spacing(5),
paddingBottom: theme.spacing(3),
color: "white",
display: "inline-flex",
flexGrow: 1,
width: "75%",
textDecoration: "underline",
textDecorationColor: "blue",

},

 <Typography variant="h4" className={classes.bodyTitle}>
    Upcoming
 </Typography>

如何只在半个单词下划线?

This is what i am trying to recreate
This is what i am trying to recreate

This is what i have managed so farenter image description here

I am using materialui and reactjs.This is the code.

bodyTitle: {
fontWeight: 800,
paddingTop: theme.spacing(5),
paddingBottom: theme.spacing(3),
color: "white",
display: "inline-flex",
flexGrow: 1,
width: "75%",
textDecoration: "underline",
textDecorationColor: "blue",

},

 <Typography variant="h4" className={classes.bodyTitle}>
    Upcoming
 </Typography>

How do Underline only half the word?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

超可爱的懒熊 2025-01-18 17:10:23

您可以尝试以下方法

<span className={classes.Classname}>Up</span>coming 

.Classname{
textDecoration: "下划线",
文字装饰颜色:“蓝色”
}

You can try below method

<span className={classes.Classname}>Up</span>coming 

.Classname{
textDecoration: "underline",
textDecorationColor: "blue"
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文