gpt4 book ai didi

html - 如何在不使用 Bootstrap 的情况下更改日期选择器/日历图标在 html 和 CSS 中的位置

转载 作者:行者123 更新时间:2023-12-02 18:23:05 24 4
gpt4 key购买 nike

我使用日历图标/date-picker 默认设置在右侧(输入字段的末尾)。我想在输入字段的开头移动日历图标/日期选择器。我试图改变它,但我无法获得适当的属性来改变它。请任何人都可以帮助改变它......! i'm adding the picture which looks like now .这是我使用的代码...

 <input class="input-field date" type="date" placeholder="Date and Time">

enter image description here

最佳答案

.input-field{
height: calc(1.5em + 1rem + 2px);
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
display: block;
width: 40%;
font-weight: 400;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 2px solid black;

}

input[type="date"]::-webkit-calendar-picker-indicator {
color: rgba(0, 0, 0, 0);
opacity: 1;
display: block;
background-repeat: no-repeat;
width: 25px;
height: 25px;
border-width: thin
}
input[type="date"]::-webkit-calendar-picker-indicator {
position: absolute;
left: 5%;
}
input::-webkit-datetime-edit-fields-wrapper {
position: relative;
left: 10%;
}
input::-webkit-datetime-edit {
position: relative;
left: 10%;
}
 <input class="input-field date" type="date" placeholder="Date and Time">

关于html - 如何在不使用 Bootstrap 的情况下更改日期选择器/日历图标在 html 和 CSS 中的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70602544/

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