Questions tagged as 'css3'

1
answer

How do I make the height of an element adapt to a%?

My question is how could I make an element (specifically a <div> ) adapt to x% of the height of the screen, so that regardless of the equipment where it is seen has the same effect, something like what about the next image...
asked by 24.01.2018 / 01:32
2
answers

Vertical scroll by clicking on the background

Is there any way by means of jQuery or CSS to perform the vertical scroll by clicking on the body of the page? I have made and modified the scroll of the project but I have no idea how to capture the event of clicking on the body and move the...
asked by 08.02.2018 / 18:49
1
answer

Hover event that works in javascript and not in css

I have a div with a background image, inside that div I have a div with position:absolute . What I want to do is that when I pass the mouse for the div container the edge of the div that is insi...
asked by 10.01.2018 / 21:42
2
answers

Fixed Column, HTML Table with BOOTSTRAP 3

I need the first column to be fixed, "fixed", that is, I can scroll on the X axis and continue to show the data in the first column. I'M USING BOOTSTAP 3 table { display: block; overflow-x: auto; white-space: nowrap;...
asked by 12.01.2018 / 19:03
1
answer

How to create a Down menu?

Hi, I'm new to the development and I'm trying to add a down menu to this code: this is my current css3 code: * { margin: 0px; padding: 0px; } nav { width:100%; display:flex; align-items: center; justify-content: cente...
asked by 10.12.2017 / 20:25
1
answer

Select any child of a css element

Is there the possibility of selecting all the children of a certain element, even though they are different? I put an example code; <div id='contenedor'> <a href='#'>Esto es un ejemplo> <h1>Ejemplo h1</h1>...
asked by 06.12.2017 / 00:15
1
answer

Responsive hack for M. Edge

short question. This hack is for M. Edge @supports (-ms-ime-align:auto) { div { display:inline-flex; } } How can I use this hack in responsive ?. So in @media this this hack for M. Edge as a display: inline-table Than...
asked by 06.12.2017 / 10:39
1
answer

How can I add a class to a li if I do not have it or delete it if I have one

I'm adding some elements dynamically by Jquery to a page every time I click the button. I have the following class in the css file: ul li.marked { color: #ABABA4; text-decoration: line-through; } Now what I want is that if I click o...
asked by 28.10.2017 / 03:12
1
answer

How can I pass elements li from one list to another that works in both directions

I have a list and I need to click on one of the li to pass that element to the other list, it must work both ways. As I have consulted, I can do it with appendTo, but at this moment I am passing the complete list to the other list (it disappe...
asked by 28.10.2017 / 04:53
1
answer

Problem with css

I have the following css code <style> p { text-align: justify; text-justify: inter-word; } </style> But I want it only for this part of the document in html <p style="margin-top: 20px; line-heigh...
asked by 28.10.2017 / 00:33