Questions tagged as 'css3'

2
answers

Fix the footer of an html page and follow the contents of the page

I need to set the footer tag to the end of the html page, but when the content exceeds the page the tag footer must accompany the content and not be fixed. See the CSS code is the HTML code I'm using for this. header {...
asked by 08.06.2014 / 04:28
4
answers

Why do my webfonts only work with Chrome?

I'm creating a website through a child theme of Shoestrap, based on Bootstrap. When I use webfonts they just work in Chrome. What am I doing wrong? My CSS is this @font-face { font-family: 'open_sansitalic'; src: url('assets/font...
asked by 06.03.2014 / 19:52
3
answers

What does this CSS code do?

This is looking at some snippets of code on the internet for a deeper learning of CSS, and I saw this code contained in a menu and would like to know what the functionality of it. .nav:before, .nav:after { content: " "; displa...
asked by 16.03.2016 / 18:42
1
answer

No sass what's the difference between a mixin and a placeholder?

Both have the same end result, but I do not know which one is the right one or the one that has the best performance example: %borda($circunferencia: 10px) { -webkit-border-radius: $circunferencia; border-radius: $circunferencia; } @mixi...
asked by 24.03.2017 / 15:37
1
answer

Animations in high quality

We all know that animations on the web are a bit unfriendly to the eye, when you open a side menu, either in mobile or desktop , you can only see part of your movement, giving the impression of a component static without life, even...
asked by 09.03.2018 / 14:09
4
answers

How to implement a textarea in a responsive way?

I want to use a <textarea> , but instead of using rows="4" cols="100" , I wanted to use something like this: style="width: 80%" to make the layout responsive. But since this does not work, that is, use the size at 80% bu...
asked by 14.02.2014 / 13:14
2
answers

How to do with CSS loader bar with animated background?

I've seen this element that actually works as a " loader " while the image is loading etc. And I tried to replicate it. Not the dynamics to function as a loader , but rather this effect of the passing line at the top. WhatIhavetocodesofaris...
asked by 30.11.2018 / 13:38
2
answers

Only with CSS is there any way to make a "Toast"? An element that goes up and then click to close it?

In mobile there is a very common component that is known as " Toast ", but I was thinking about how to adapt it only with HTML and CSS Isthereanywaytodosomethinglikethis"component" above just using CSS and HTML, without framework or other...
asked by 21.11.2018 / 11:51
2
answers

How to remove bug from antialising lines generated in Firefox and IE?

I'm creating a border on my site, with background . It works perfectly in Chrome, but in Firefox and IE unwanted lines appear. I have already noticed that they are present in the CSS3 property of transform: scaleX (-1); in the Div effect I need...
asked by 06.03.2014 / 22:58
1
answer

How do the Outline of the buttons follow the curvature of the elements?

I know that outline is very important for usability and especially for the accessibility of the page, even here is a very interesting WebAIM article about it: link However, outline does not seem to match the border-radius...
asked by 18.10.2018 / 15:55