المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : سي إس إس CSS كيفية تغيير خلفية الحقول Selected Fields



Rise Company
06-10-2022, 14:19
سي إس إس CSS كيفية تغيير خلفية الحقول Selected Fields
How to avoid "-internal-autofill-selected" style to be applied?
CSS - set the background color of ::selection in an INPUT or TEXTAREA in webkit / chrome?
input:-internal-autofill-selected {


هذا كود لون خلفية Chrome Field Select


input:-webkit-autofill,
input:-webkit-autofill:focus {
transition: background-color 600000s 0s, color 600000s 0s;
}



هذا كود لون تظليل النص



::selection {
background: #FF5700;
color: #fff;
}



هذا كود لون مؤشر الماوس


caret-color: #ff5700;

المرجع:
https://stackoverflow.com/questions/61083813/how-to-avoid-internal-autofill-selected-style-to-be-applied