Posts by Cleiton Pereira • 84 points
5 posts
- 
		-1 votes1 answer246 viewsA: Media queries, Bootstrap or both?Rafael, if you’re starting now, I suggest you start studying the basic tools for web development, which are 1: HTML, 2: CSS and 3: Javascript. A good start would be the courses of University XTI.… 
- 
		3 votes2 answers3847 viewsA: Vertical line between IvsIt seems your doubt is more focused on CSS (Style) than the languages defined in tags. See, to put a vertical line between the divs just you by, as mentioned, a border-left in the rightmost element… 
- 
		0 votes2 answers79 viewsA: Error using CSS Nth-Child()Use the Nth Tester CSS Tricks. Will help you. A good one for you to create Layouts would also be to Flexbox. It already has a good compatibility with the most modern browsers.… 
- 
		1 votes1 answer3619 viewsA: Enable and disable a buttonHTML: <form> <input type="text" /> <input type="text" /> <input type="text" class="ultimo"/> <button disabled class="meu-botao">Enviar</button> </form> CSS:… 
- 
		2 votes2 answers783 viewsQ: CSS - How to select the last sibling?I have the following HTML structure: <form action="" id="form-contato"> <label for="nome">Nome</label> <input type="text" name="nome" id="nome" placeholder="Nome"/> <label…