El color del texto seleccionado se puede cambiar fácilmente usando CSS | ::selector de selección . En el siguiente código, hemos usado CSS ::selección en los elementos <h1> y <p> y establecimos su color como amarillo con fondo verde.
El siguiente ejemplo implementa el enfoque anterior:
Ejemplo:
<!DOCTYPE html> <html lang="en"> <head> <title> How to change the color of selected text using CSS? </title> <style> .geeks h1 { color: green; } h1::selection { background: green; color: yellow; } p::selection { background: green; color: yellow; } </style> </head> <body> <div class="geeks"> <h1>GeeksforGeeks</h1> <p> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and many more. </p> </div> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por sirohimukul1999 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA