I have a problem hiding a div when I show another. If I use .conteudo_ up instead of id2 I can do this effect, but it does for everyone at the same time and I want for each one individually.
How do I do this?
link
HTML...
I'm having some problems updating a div without updating the entire page.
Here is the code:
<div class="main" align="justify">
<div id="mensagens">
<?php echo file_get_contents('arquivo.txt'); ?>
</div&...
I'm making a map of Brazil as svg, I need it when I click on a particular state it gives a show on a different div that will get information about that state.
I need to compile the id of the path with the div class and display .show
Follow...
Hello my dear programmers friends of our Brazil!
I need your help on the following question:
I have a button that when pressed changes the display from one div to one block. So:
CSS
#form-pergunta {
display: none;
}
JavaScript
f...
For example, I have a certain div, but I want it to appear only from 6 p.m. to 00 p.m. every day, but I have no idea how to do it.
<div class="conteudo">
<h1>aqui vai o conteudo da div</h1>
</div>
I want...
I have a form, and inside it I have an input, which will have to get what it contains inside a DIV, which in this case is just text.
The input looks like this:
<input class='formContato' type='text' name='orcamentoAssuntoForm' id='orcame...
How can I use two CSS files in an HTML file, but one of the CSS files is only used in div .
I have a CSS file to style the page, but I needed another CSS file to be able to style a div in the middle of the page.
Because I'm te...
I have 3 divs in a row, but some have different heights depending on the content of the div.
How to standardize the height of the div. (I do not want to set height, but rather they are the same height.)
My html:
<div class="row-servic...
I'm trying to create a LandingPage but the first image is being cropped
I'm using this CSS :
.parte1 {
min-height: 100%;
max-height: 100%;
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
col...
I'm trying to solve a CSS problem in my development:
HTML:
I created a responsive DIV with 1 COLUMN (GRID of 6) for a specific content section.
I already put text inside this one.
CSS:
I created a class to stylize this DIV
#s...