我的網格項目沒有按照預期的方式跨越,我不知道如何修復它。
我將發布我目前擁有的代碼,但是到目前為止我已經嘗試了許多不同的東西,但沒有一個成功。
這是代碼看起來和應該看起來的樣子,我基于我以前制作的Wix網站,現在我正在學習html和css,我試圖重新創建和改進它。
我該怎么做才能讓& quot留言..."部分跨越兩列以及復選框?
.connect-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 25px;
}
.connect-fieldset {
display: grid;
color: rgb(73, 172, 255);
grid-template-columns: 1fr 1fr;
grid-template-rows: repeat(8, auto);
font-size: 14px;
}
input,
textarea {
border: none;
margin: 10px 0;
width: 90%;
height: 3em;
font-size: 13px;
}
input[type="submit"] {
margin: 30px auto auto auto;
width: 100%;
max-width: 500px;
color: rgb(73, 172, 255);
font-size: 18px;
border-radius: 5px;
background-color: white;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: rgb(73, 172, 255);
color: white;
}
input {
display: block;
margin-bottom: 10px;
}
.message {
grid-column: 1 / span 2;
grid-row: 7 / 8;
height: 150px;
width: 100%;
}
.terms {
grid-column: 1 / span 2;
grid-row: 8 / 9;
}
fieldset {
border: none;
margin: 0;
padding: 0;
}
label {
border: none;
border-bottom: 1px solid rgb(73, 172, 255);
margin: 10px 15px;
}