gpt4 book ai didi

html - 在移动设备上将按钮更改为卡片

转载 作者:行者123 更新时间:2023-11-28 01:44:53 25 4
gpt4 key购买 nike

我正在尝试在移动 View 中将按钮变成卡片。我以前从未这样做过,但下面的代码似乎应该可以工作。

我错过了什么?

  @media (max-width: 767px) {
.dates {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 40%;
border-radius: 5px;
}
}
.dates {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
    <!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">

<div class="dates">
Hello
</div>

最佳答案

让媒体查询类在下面。像这样。在整页上查看它以查看效果。希望这可以帮助。

      
.dates {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
@media (max-width: 767px) {
.dates {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 40%;
border-radius: 5px;
padding:100px;
}
}
        <!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">

<div class="dates">
Hello
</div>

关于html - 在移动设备上将按钮更改为卡片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50237741/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com