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...
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...
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...
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;...
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...
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>...
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...
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...
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...
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...