Questions tagged as 'css'

2
answers

How to make PopUp appear by JavaScript when done with CSS

I have a PopUp modal that is not done in JavaScript only with HTML and CSS, I need to send it to call with JavaScipt but I do not know how. The button with which I'm calling from HTML <a class="modal-open" href="#modal">PopUp Modal<...
asked by 04.04.2018 / 18:26
1
answer

Fix a table header in php

I have an html table and I want to fix the header but at the moment of doing it, I reduce the size of th and the entire table is unbalanced thead,tbody tr{ display:table; width:100%; table-layout:fixed; } thead {     position: fixed;     ...
asked by 02.10.2018 / 19:36
1
answer

to toggle divs by time or with click

I'm working with the following js: $(document).ready(function () { var allBoxes = $("div.boxes").children("div"); transitionBox(null, allBoxes.first()); }); function transitionBox(from, to) { function next() { var nextTo; if...
asked by 09.09.2016 / 11:43
1
answer

Blank space in header - caused by margin-top of ul

Edit : I just saw that it's the ul, but should not I leave the margin relative to the father? I'm doing something as simple as a header, but for some reason, entering a margin in the ul produces the margin outside the parent's contain...
asked by 18.11.2016 / 17:54
3
answers

Center icon in modal window Header

I have the following structure of HTML code: <div class="modal-header-success"> <h3 class="modal-title" style="text-align: center;"> Modal PopUp <button type="button" class="close panelTitleTxt glyphicon glyphicon-rem...
asked by 09.05.2016 / 18:14
1
answer

Change effect of a font

I have a wordpress with a theme in which I want to customize a title that I want to be like this : But the source is like this : I have manually assigned the source that you use and other css effects: .text--superior {...
asked by 11.04.2016 / 21:51
4
answers

CSS generates a blank space

I am making a web page, in this case the layout , and I have a problem with the CSS since this generates a small blank space between the background ("wallpaper") and the footer . The code is as follows: * { margin: 0;...
asked by 13.12.2016 / 19:01
1
answer

CSS last: child does not work on my button

I have a series of buttons that when click display a text, each button has a border-bottom , I want to make all the buttons have that border minus the last one. This is my code: <div class="collapse-container"> <butt...
asked by 30.11.2018 / 05:51
1
answer

because there is a difference in the size of the images in Chrome and Firefox

because this difference in the images is to say in chrome the image looks deformed while in Firefox it looks like I hope my code to adjust the images is the following: .dark{ display: flex; justify-content:center; align-items: cente...
asked by 25.08.2018 / 23:13
2
answers

Send an item below the whole in a div

I would like to know if there is any way to send an element below the whole of a div. It would be something of the style: : last-child {    float: left; } But instead of left-right, it would be up-down. This would be the current code:...
asked by 25.09.2018 / 20:27