Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

486
Views
Cómo ocultar <h3> en etiquetas div con css

Estoy tratando de ocultar la etiqueta h3 de este div sin agregar una clase. He probado de varias formas con el css pero no lo he conseguido. ¿Alguien puede recomendarme una alternativa?

Dado que el código html está en un archivo de complemento, no puedo actuar directamente sobre él.

 <div class="wpua-edit-container"> <h3>Profile Picture</h3> </div>
about 4 years ago · Santiago Trujillo
2 answers
Answer question

0

¿Es esto lo que quieres?

 div h3 {display:none}
 <div class="wpua-edit-container"> <h3>Profile Picture</h3> <p>hello...</p> </div>

Además, puede hacer:

  1. div h3 {pantalla: ninguno;}
  2. div.wpua-editar-contenedor h3 {pantalla: ninguno;}
  3. .wpua-editar-contenedor h3 {pantalla: ninguno;}
  4. .wpua-editar-contenedor > h3 {pantalla: ninguno;}
  5. div.wpua-edit-container > h3 {pantalla: ninguno;}

Todos estos deberían funcionar. Además, agregue !important si es necesario, si su complemento aún no lo elimina, como {display: none!important} .

about 4 years ago · Santiago Trujillo Report

0

Puedes usar jQuery si quieres:

aquí está el índice.html

 <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="script.js"></script> </head> <body> <div class="wpua-edit-container"> <h3>Profile Picture</h3> </div> </body> </html>

y el script.js:

 $(document).ready(function() { $("h3").hide() })

Básicamente está haciendo lo mismo que display: none; (agrega al elemento la pantalla: ninguna propiedad de estilo al elemento) pero usando jQuery.

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!