محمود سعداوي2 نشر 5 يونيو 2022 أرسل تقرير نشر 5 يونيو 2022 الرجاء المساعدة في عدم ظهور الخاصية after على المتصفح. شيفرة css .form-section input[type="submit"]{ border: none; width: 20%; padding: 10px 2px; position: absolute; background-color: #fff; color: rgb(145, 181, 189); font-size: 20px; font-weight: bold; cursor: pointer; text-align: center; } .form-section input[type="submit"]::after{ content: ""; position: absolute; width: 100%; height: 2px; background-color: black; } اقتباس
0 Hassan Hedr نشر 5 يونيو 2022 أرسل تقرير نشر 5 يونيو 2022 يرجى إرفاق شيفرة HTML المتعلقة بالمشكلة كاملة نصيًا ضمن السؤال حتى نتمكن من المساعدة اقتباس
0 محمود سعداوي2 نشر 5 يونيو 2022 الكاتب أرسل تقرير نشر 5 يونيو 2022 بتاريخ 3 ساعات قال Hassan Hedr: يرجى إرفاق شيفرة HTML المتعلقة بالمشكلة كاملة نصيًا ضمن السؤال حتى نتمكن من المساعدة تفضّل. <div class="section-4"> <h1 class="section-heading">Contact</h1> <div class="form-section"> <img src="./img/form-img.png" alt=""> <form action=""> <input type="text" placeholder="Your Name"> <input type="email" placeholder="Your Email"> <textarea placeholder="Your Message"></textarea> <input type="submit" value="Send"> </form> <input type="submit" value="Send me a letter" class="showForm"> </div> </div> 1 اقتباس
0 Hassan Hedr نشر 5 يونيو 2022 أرسل تقرير نشر 5 يونيو 2022 بتاريخ 38 دقائق مضت قال محمود سعداوي: تفضّل. <div class="section-4"> <h1 class="section-heading">Contact</h1> <div class="form-section"> <img src="./img/form-img.png" alt=""> <form action=""> <input type="text" placeholder="Your Name"> <input type="email" placeholder="Your Email"> <textarea placeholder="Your Message"></textarea> <input type="submit" value="Send"> </form> <input type="submit" value="Send me a letter" class="showForm"> </div> </div> في CSS لا يمكن استخدام المحدد after للعناصر مثل input، لحل المشكلة يمكنك وضع العنصر input ضمن حاوية بالصنف submit-wrapper و استهداف تلك الحاوية بالمحدد after وتنسيقها كما المطلوب كالتالي: <div class="submit-wrapper"> <input type="submit" value="Send me a letter" class="showForm" /> </div> وفي CSS .form-section .submit-wrapper::after { .. ^^^^^^^^^^^^^^^ } 1 اقتباس
0 محمود سعداوي2 نشر 5 يونيو 2022 الكاتب أرسل تقرير نشر 5 يونيو 2022 في هذه الحالة لم تظهر .submit-wrapper input.showForm بالشكل الكامل .submit-wrapper { position: absolute; } .submit-wrapper input.showForm{ border: none; width: 20%; padding: 10px 2px; background-color: #fff; color: rgb(145, 181, 189); font-size: 20px; font-weight: bold; cursor: pointer; text-align: center; z-index: 20; } اقتباس
0 محمود سعداوي2 نشر 5 يونيو 2022 الكاتب أرسل تقرير نشر 5 يونيو 2022 (معدل) بتاريخ 36 دقائق مضت قال محمود سعداوي: في هذه الحالة لم تظهر .submit-wrapper input.showForm بالشكل الكامل .submit-wrapper { position: absolute; } .submit-wrapper input.showForm{ border: none; width: 20%; padding: 10px 2px; background-color: #fff; color: rgb(145, 181, 189); font-size: 20px; font-weight: bold; cursor: pointer; text-align: center; z-index: 20; } عذرا لقد تم جاوز الخطأ. تم التعديل في 5 يونيو 2022 بواسطة محمود سعداوي اقتباس
السؤال
محمود سعداوي2
الرجاء المساعدة في عدم ظهور الخاصية after على المتصفح.
شيفرة css
.form-section input[type="submit"]{ border: none; width: 20%; padding: 10px 2px; position: absolute; background-color: #fff; color: rgb(145, 181, 189); font-size: 20px; font-weight: bold; cursor: pointer; text-align: center; } .form-section input[type="submit"]::after{ content: ""; position: absolute; width: 100%; height: 2px; background-color: black; }
5 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.