Posts by heromax • 159 points
7 posts
-
2
votes1
answer95
viewsQ: One of the page elements moves by clicking on the other!
It is not Javascript that is doing this that I will quote below with my page, but yes, the CSS itself, I do not know what this is, I tried to solve 'without gambiarras', but it did not work :( See…
-
0
votes2
answers256
viewsQ: How to position an image with vertical-align?
I have a menu that poses the logo of the site as follows: html: <a href="#"> <img src="layout/img/logo.png" class="logo" /> </a> css: header div a img.logo{ top:50%;…
-
1
votes2
answers478
viewsQ: Self-adjusting menu with li’s
How can I create a self adjustable menu without using any table, just read? That is, create a horizontal menu where li’s adjust in width without exceeding ul size as you add items! This site here:…
-
3
votes3
answers2617
viewsA: Put div in the background
I resolved so: Div 02 was inside div 01, I put div 02 out and left div 01 separate from div 02: Before: <header> <div id="topo"> </div> </header> Afterward: <div…
-
2
votes3
answers2617
viewsQ: Put div in the background
I need div 01 not interfere in the positioning of the other Ivs, such as div 03 for example, or is that div 03 comes right after div 02, that the Ivs follow the normal page flow without needing div…
-
4
votes2
answers11183
viewsQ: How to put an Submit input inside the input text?
I have this HTML: <form action="" method="post"> <input type="text" name="pesquisa" placeholder="O que você procura?"/> <input type="submit"> </form> And I have this CSS:…
-
3
votes2
answers262
viewsQ: Tag header, daughter of tag Section, inherits values from other tag header
I have this HTML structure: <body> <header> </header> <div class="limit"> <section class="conteudo"> <header> <h1>TESTE</h1> <h3></h3>…