Questions tagged as 'css'

1
answer

I'm experimenting with javascript and css rotating divs with letters because some rotate well and others abruptly

The code that rotates the divs with the letters: if(tipoTransformacion[i]==0) $("#t_"+i).css("transform","rotate("+rotar+"deg)"); if(tipoTransformacion[i]==1) $("#t_"+i).css("transform","rotate("+rotar2+"deg)");...
asked by 28.09.2016 / 08:02
1
answer

Change a link generated by php

In the Kalfo template of themeforest in the page that shows the portfolios of the different galleries a link with the text "All" is generated that shows all the elements of all the galleries, it took several days looking for where to change that...
asked by 28.09.2016 / 11:30
1
answer

Integrate Materialize css in Laravel 5.4

Could someone tell me how to install, materialize css in my project done in laravel ? I am currently working with the 5.4 version of laravel I ask this question, because I know it comes with bootstrap installed when you make a new project. If...
asked by 26.04.2017 / 06:37
3
answers

Design Responsive with CSS images

img{ width: 50%; height: 50%; } img[name="imagen_cuadrada"]{ width: 50px; height: 50px; } <img src="https://www.tuexperto.com/wp-content/uploads/2018/03/paisajes.jpg"> <img name="imagen_cuadrada" src="https://www...
asked by 13.12.2018 / 15:12
3
answers

Put a background photo in a section. html css

I am developing a static website where I want to put a photograph in a section. the background right now has a color, but no matter how hard I try to put the image it does not appear. <section class="bg-primary" id="nosotros"> <di...
asked by 27.07.2017 / 11:51
4
answers

How to hide the scrollbar?

I would like to remove my scrollbar from the user's view, as I do not currently know that when an error is marked, a box appears above my form and therefore moves some pixels to my form and that in this movement where the scrollbar...
asked by 18.03.2017 / 00:31
1
answer

Overlapping Divs

I'm a bit of a rookie and I made a mistake creating a website. The idea is to create a website with a fixed header and side menu. The fact is that the lateral menu is superimposed on the header by having them float: left and clear: both to both....
asked by 23.03.2018 / 05:21
1
answer

CSS does not work when I work on localhost: 8080

I am creating a website and I have problems loading the CSS stylesheet in my HTML document when I am working in localhost:8080 and I do not understand why. The structure of my repertoire is as follows: . |-- node_modules |-- ressourc...
asked by 13.04.2018 / 20:55
2
answers

Create grayscale filter for CSS image

How can I apply a grayscale filter to an image with CSS?     
asked by 22.01.2016 / 23:43
3
answers

Apply CSS style to a row of an html table depending on a value

I have a common html table, with a column called "status", whose possible results are "yes" and "no". and I want to make all the rows whose state is="not" paint them in another color. How can this be done with jQuery? <table> <tr&g...
asked by 18.04.2017 / 18:14