I got the next code in HTML
<section class = "personal_proyects">
<article>
<div class = "personal_details">
<h3>Canal YT: Codigo RM</h3>
<p>EXPLICACIÓN DEL CANAL YT</p>
<a href="https://www.youtube.com/watch?v=lqURPBtGJzg&list=RDlqURPBtGJzg&start_radio=1" target="_blank">Ver canal</a>
</div>
<figure>
<img src="images/YT.jpg" alt="Imagen canal YT" width=500>
</figure>
</article>
In my css
.personal_proyects,
section {
display:flex;
}
I got another tags section in my html code, when i use the property flex my tags article inside my section with the class personal_proyect don't get align, how can i solve?
if i use the next sentence on css all the tags section use the display: flex, i only want for use that display for my tags section with the class "personal_proyects"
section {
display:flex;
}