你好,我試著將注冊按鈕居中,但是當我使用文本對齊或居中對齊時沒有反應,我該怎么做?我使用的參考代碼沒有代碼行,有align命令,這是我的備忘單代碼,有什么區別嗎? 注意:我確實在其他線程中發現了一些像left%50這樣的命令,但這是最糟糕的(只有居中的一個注冊按鈕,其他的都消失了)
<!DOCTYPE html>
<html>
<head>
<title>Flexbox Pricing Table</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sono:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Sono', sans-serif;
}
.pricing-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
gap: 2rem;
}
.pricing-plan {
flex: 1;
max-width: 400px;
padding: 20px;
background-color: #f2f2f2;
border-radius: 5px;
text-align: center;
}
.plan-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.plan-price {
font-size: 48px;
font-weight: bold;
margin-bottom: 10px;
}
.plan-features {
list-style: none;
padding: 0;
margin: 0;
}
.plan-features li {
margin-bottom: 20px;
}
.plan-button {
padding: 10px;
background-color: #ff6600;
color: #fff;
border-radius: 5px;
border: none;
}
@media (max-width: 1250px) {
.pricing-container {
flex-direction: column;
height: 100%;
}
}
</style>
</head>
<body>
<div class="pricing-container">
<div class="pricing-plan">
<div class="plan-title">Basic</div>
<div class="plan-price">$11.99/month</div>
<ul class="plan-features">
<li>? 10GB Storage</li>
<li>? 1 User</li>
<li>
上一篇python 是什么定義
下一篇vue哪些公司在用