html - How to format a div id in a div class? -
<div class="content"> <div class ="imgs"> <a href="#"><img src="images" alt="some_text" width="250" height="210"></a> </div> <div class = "compu"> <div id="titulo">text</br></div> <div id="subtitle">text </div> </div> </div>
how format text in titulo , subtitle??
the css have compu:
.compu { position: relative; width: 250px; font-family: helvetica, sans-serif; color: #1b57a0; letter-spacing:2px; line-height:120%; font-size: 12px; font-weight: normal; text-align: justify; }
i don't know html , css, , first project, thank you
you can give css style titulo , subtitle follow
.compu #titulo { /*write style code here*/ } .compu #subtitle { /*write style code here*/ }
Comments
Post a Comment