微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在 HTML 中创建预期的按钮?

如何解决如何在 HTML 中创建预期的按钮?

第一张图片是在 Python 在线课程中拍摄的。第二张图片是在我自己的网站上拍摄的。我想模仿这个网站来练习 html/css 技能。我想知道的是如何创建预期的按钮。感谢您的回复

First image

/*Here is my CSS code,which is unfinished.*/
.Matter a:hover{
    background-color: rgb(230,230,230);
}





<!-- Here is my HTML code -->
<div class='Matter'>
    <h1>Welcome to the Capstone</h1>
        <p><a href='#'><b>Video:</b> Introduction: Welcome to the Class</a></p>
        <p><a href='#'><b>Reading:</b> Capstone Overview</a></p>
        <p><a href='#'><b>Reading:</b> Help Us Learn More About You!</a></p>
</div>

second image

解决方法

让我们一步步解决您的问题:

  1. 链接样式:我们将添加一些 paddingtext decorationcolor。我们还使用 display inline-block 使我们的链接全宽。
.Matter a {
  padding: 8px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: black;
}
  1. 添加悬停样式:
.Matter a:hover{
    background-color: rgb(230,230,230);
}
  1. 添加checkmark:我们需要使用CSS Pseudo element ::before在链接前添加复选标记。为了在复选标记周围添加绿色圆圈,我们使用了一些 margin、填充、border radius、背景、颜色和 font size。我们还使用 position 来调整复选标记圆圈位置。
.Matter a::before {
  content: '?';
  margin-right: 8px;
  padding: 2px 4px;
  background: green;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  position: relative;
  top: -2px;
}

这是完整的解决方案。你可以随心所欲地玩它。

.Matter a {
  padding: 8px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: black;
}

.Matter a:hover{
    background-color: rgb(230,230);
}

.Matter a::before {
  content: '?';
  margin-right: 8px;
  padding: 2px 4px;
  background: green;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  position: relative;
  top: -2px;
}
<div class='Matter'>
    <h1>Welcome to the Capstone</h1>
        <p><a href='#'><b>Video:</b> Introduction: Welcome to the Class</a></p>
        <p><a href='#'><b>Reading:</b> Capstone Overview</a></p>
        <p><a href='#'><b>Reading:</b> Help Us Learn More About You!</a></p>
</div>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。