Questions tagged as 'css'

1
answer

Problem with public file in express

I have a problem I can not make the CSS file apply in the HTML This is my index.js const express = require("express"); const app = express(); const morgan = require("morgan"); const path = require("path"); //ROUTES app.use(require("./r...
asked by 22.12.2018 / 17:26
1
answer

create a circular input type range

I'm trying to make a range type input that is circular, similar to this: but the only thing I find are circular progress bars, and I need an input range that is circular and that you can change the value, and give it a minimum value and a...
asked by 14.12.2018 / 21:21
1
answer

JAVAFX with css implementation

I have this Java code from javafx public class FormularioGeneral extends Application { @Override public void start(Stage primaryStage) throws Exception { TabPane tabPanel = new TabPane(); Tab tab = new Tab()...
asked by 14.12.2018 / 12:55
1
answer

"Stylesheet could not be loaded" in Firefox [closed]

I got an error in Firefox when trying a site that I'm creating, the error says "Stylesheet Could Not Be Loaded" and it only happens when I use Firefox but the weird thing is that some parts of the style sheet if load as for example...
asked by 20.03.2017 / 22:59
1
answer

Because when I put my navbar in fixed position it becomes "invisible"?

I'm trying different styles with CSS and now I want my navbar to stay static while one is looking at the information (Same as on this page). Even when position: fixed works as such, the other elements change their position and when I start downl...
asked by 06.12.2018 / 02:36
1
answer

I get this error when I try to validate my website! Error: Start tag body seen but an element of the same type was already open

Error: <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>About me</title> <link href="../CSS/main.css" rel="stylesheet" type="text/css"> </head> <a href="....
asked by 11.12.2018 / 19:13
1
answer

Automatically adjust the height of a child div to the height of the parent div

less .content-card { width: 32rem; border-radius: 4px; box-shadow: 0 2px 6px 0 rgba(154,154,154,.78); background: #fff; .content-img { .img-a {...
asked by 27.11.2018 / 16:24
1
answer

Keyframes in SCSS

I have a mixin but applying it to an element does not apply correctly. MixS SCSS @mixin keyframes($property) { @-webkit-keyframes $property { @content; } @-moz-keyframes $property { @content; } @-o-key...
asked by 30.12.2018 / 17:01
2
answers

HTML + CSS: the gray background reaches down

I would like the gray background to come down to the bottom. body,html{ height: 100%; } nav.sidebar, .main{ -webkit-transition: margin 200ms ease-out; -moz-transition: margin 200ms ease-out; -o-transition:...
asked by 12.12.2016 / 18:28
2
answers

apply effect to an image with css?

I have the following link with an icon on the left side. I want to add the effect that when you click on the link, only the image vibrates with the vibrate class. Just as I have it, only the effect is applied when I click on the image. .vibrar...
asked by 10.12.2016 / 18:16