Hello,
Would you like to know the easiest way to create an HTML menu in CSS? I tried to make one here and it really did not work out.
<!DOCTYPE html>
<html>
<head lang="pt-br">
<meta charset="utf-8">
&l...
Following a css3 tutorial, I learned how to place icone inside the inputs.
The dev that I was teaching used an example of 2 inputs to put 2 icons 1 in each input.
In this case, you used the following pseudo elements:
.form-group :: before...
I developed a toolbar for Google Chrome by adding it to the pages through an iFrame:
var iframe = document.createElement('iframe');
iframe.id="iframeId";
iframe.src = chrome.extension.getURL('CLAWS_Sem_Imagens.html');
iframe.style.height = 7em...
I'm making a website for the company where I work and made a multilevel menu.
My problem is that when I open one of the levels, the last item does not appear and when I scroll what moves is the page that is behind.
I wanted to know what I'm doin...
Hello, I want to get the following result with css:
I know that with :nth-child: odd and :nth-child: even select odd and even, but the way I want it would look something like this:
No, yes, yes, no, no, yes, yes ......
Whenever I update the CSS and JQUERY of a site, I need to be asking the client to open the site in an anonymous window. Because his browser saves the old files and he can not see the changes.
How best to get around this?
I tried to create a menu with html and css without any framework, I used float:left to put the image with the logo on the left and rest of the images that are anchors should I want to be able to find the right one, but when I use f...
Recently I paid attention to preprocessors of css as less and sass because I saw advantages in using them, but I see the necessity of a workflow so that css generated compiles automatically. At first, how do you get t...