I have a page called noticias.html
with several news divided in several articles, but only the links of this part that is written "CONTINUE READING ..." I would like to make when clicking on this part the news will open all with the rest of the information
My code is this:
section {
width: 80%;
margin: 0 auto;
background-color: #dedede;
}
article {
width: 200px;
height: 200px;
background-color: yellow;
display: inline-block;
margin-left: 10px;
}
a {
display: block;
width: 100%;
height: 10px;
border-radius: 7px;
text-decoration: none;
background-color: red;
display: table;
position: relative;
top: 150px;
}
h2 {
width: 100px;
height: 100px;
border: 1px solid black;
}
<section>
<article>Notícia 01
<a href="">continue lendo...</a>
</article>
<article>Notícia 02
<a href="">continue lendo...</a>
</article>
<article>Notícia 03
<a href="">continue lendo...</a>
</article>
<article>Notícia 04
<a href="">continue lendo...</a>
</article>
</section>