Questions tagged as 'css'

4
answers

Remove space between an input and a button in bootstrap

How can I remove the space that exists between the input and the button ? This is my code: <div class="panel-body"> <ul id="list_messages"></ul> <div class="row"> <div class="col...
asked by 02.11.2016 / 00:53
3
answers

Collect label and input in form

I have a form with a series of labels and inputs. With CSS, I have given it some form but I can not get the labels together with the text fields. I have tried reducing the witdh but everything is messed up. EDIT 1 The CSS file: /*...
asked by 01.11.2016 / 12:54
1
answer

Does not load CSS on NodeJS server

I have the following basic server: var express = require('express'); var app = express(); app.get('/', function(req, res){ res.sendfile(__dirname + '/public/index.html'); }); app.listen(8081); In that index.html I...
asked by 31.03.2017 / 19:34
2
answers

Prevent input from leaving the parent container, box-sizing does not work

I have a problem with a form, I'm giving input styles all right, but these are out of the form, only fit if I decrease the width or padding, try with the value "border-box", "overflow" : hidden "but I can not prevent them from coming out, attach...
asked by 03.04.2017 / 20:58
2
answers

-webkit-linear-gradient CSS works with few values but does not work with many

I have this line -webkit-linear-gradient(-20deg, #F15A24 87%, transparent 13%); It works well !! But when I try with more values, it does it badly -webkit-linear-gradient(49deg, #575757 52px, #f6f6f6 39px, #092432 429px, #736357 173px,...
asked by 11.10.2016 / 23:43
1
answer

offset () and position () - jquery

I have the following problem. In Firefox, when using the property .position() , it is always relative to the position of the browser window, that is, it makes the position of the window never reach the position of the element, because i...
asked by 29.11.2016 / 12:59
1
answer

Problems in chrome with overlapping divs using z-index and position: absolute

I have the following code that makes that when you work in a small window or zoom out to the window the divMenu in chrome overlaps the divPlegar (to fold or unfold the menu) and the divbody. I have tried different things, in IE11 it works correc...
asked by 05.09.2016 / 11:00
3
answers

How to apply the same CSS style to different elements through Javascript?

I have a configuration tab in my web application, this tab, although simple and basic, should allow the user to adapt his interface as he wants, and what happens is that I have a chooser color where you can choose a color tonality inside of that...
asked by 17.08.2016 / 03:09
2
answers

How to position images within DIV

I have a div tag and I need some objects to be aligned to the right and others to the left and to be seen at the same height inside the screen. This is my code: <div align="justify"> <table> <tr> &l...
asked by 18.08.2016 / 17:39
2
answers

Sort the elements of a navbar

How can I place the elements of a navbar as they are placed correctly and that the last element is at the end of navbar ? There is a gap between the last element and the end of navbar and it does not look very good. This i...
asked by 06.04.2016 / 04:40