Questions tagged as 'css3'

1
answer

How to border shadow an image when you click on it?

I am making a form to select the type of card at the time of payment and I want that when you select the image of the type of card it is marked with a shading around it. my template is: <form> ... <div class='formulario-tarjeta...
asked by 28.03.2018 / 13:58
1
answer

Transition in CSS

What I try to do is to leave a background shadow that goes from left to right. The background what it does is give it another background color, but instead of it appearing, it moves. modify everything. Now I did this: .Grupo { transit...
asked by 28.02.2018 / 19:41
4
answers

Selector for all elements except the first

I have 11 p elements with the title class p.title What would be the selector to add styles to all p.title minus the first one? I could select all the others with nth-child () and their numbers but it would not be the most efficient   ...
asked by 01.11.2017 / 23:20
3
answers

Update text depending on selected values in a list * WITHOUT JAVASCRIPT *

At work we find an interesting problem: we have a page with a drop-down list that, when the selected option changes, updates the values of a series of elements from the values of a variable in JSON. HTML is something like this (simplified):...
asked by 08.06.2016 / 06:37
1
answer

"Pulse" effect in CSS3

Hi, I am trying to achieve a "Pulse" effect on a circle, using only pure CSS3. Below I leave an example of what was expected. Is it possible? Expected Current #circle { width: 70px; height: 70px; backgroun...
asked by 19.10.2017 / 14:39
1
answer

How to assign to the same element two CSS3 animations

I'm trying to make an animation of div that the first 2 seconds appear and position itself in the center of the page and once this animation is finished, it executes a second animation that consists of rotating this div 360 degrees...
asked by 18.01.2017 / 15:51
1
answer

Properties defined in, #id vs .class

I have a question about the use of div and .class . I have an HTML5 document with several div . The point is that the div has defined CSS properties and I intend to modify them using a class. When I try it, I check t...
asked by 04.05.2016 / 13:35
2
answers

How to rotate 180 degrees horizontally a div

I have a simple example of a div, which I want to rotate 180 degrees horizontally, my example rotates vertically which I do not want <!DOCTYPE html> <html> <head> <style> div { width: 200px; height: 10...
asked by 23.12.2016 / 23:33
2
answers

CSS conditional on language

When a CSS stylesheet is included, you can specify the media query directly on the link tag with the condition that must be met for those styles to apply: <link rel="stylesheet" media="(max-width: 480px)" href="moviles.css" />...
asked by 26.09.2016 / 18:41
3
answers

Is there any difference between left and margin-left?

I would like to know what is the difference, if any, between left and margin left or right and margin right en CSS . Can it be that the difference is that one is CSS and another CSS3 ?     
asked by 08.01.2017 / 13:42