Questions tagged as 'css'

5
answers

Show text when hover in an image

I have the code: .desvanecer:hover { opacity: 0.07; -webkit-transition: opacity 500ms; -moz-transition: opacity 500ms; -o-transition: opacity 500ms; -ms-transition: opacity 500ms; transition: opacity 500ms; } <img...
asked by 14.01.2017 / 18:57
3
answers

Putting text on an edge

I know how to put a border to a text, but now I want to do the opposite, to a div that contains a border to add a text that interrupts the border.     
asked by 21.12.2018 / 15:32
3
answers

Put blank space every 20 rows in an html table

Is there any way to put a blank space in a table every X rows? I do not care if it's with css, with jquery or whatever. This is what the page generates, and the space I want to put in the red box. Pages are created as needed and create...
asked by 29.12.2016 / 22:00
2
answers

CSS selector for element without class?

Inside DIV elements there are 3 SPAN, 2 with some CSS CLASS and another WITHOUT CLASS. How to select CSS with selectors that has NO CLASS, I tried span: not (.AAA) but I can not put both classes because it does not work. Since classless SPANs ca...
asked by 09.11.2018 / 09:16
2
answers

How to use buttons in HTML form to choose between several options?

I am designing a registration form and the section of choice of sex is not designed as a dropdown but as three buttons that when choosing one is active and I do not know how to do this in HTML and CSS. I have tried to put a type button but it...
asked by 20.02.2018 / 14:27
4
answers

How to change the appearance of an object when clicking?

I'm doing a minimalist memory game, to practice HTML and CSS code, but as a good beginner, I can not find how when the user clicks on a letter (not the effect: hover) it shows the back. In other words, I have the following object: Stylized...
asked by 27.04.2017 / 02:54
3
answers

How to remove spaces between div with css or Jquery?

I have been trying to remove the space that forms between the rows of the tables. This is what I have tried. I just tried to put border: 1 px solid black and still does not take the form I would like. I want the grid to be left without that d...
asked by 27.04.2018 / 16:53
3
answers

Overlay opacity html css

I am developing a web page where I want to put a background image with an opacity of 0.3 and that the letters above do not suffer from opacity. The letters would be nested inside the div of the image. I do not know how to do it or if you can, wh...
asked by 28.07.2017 / 10:34
1
answer

Apply CSS styles to Light DOM (shadow DOM) in custom element HTML5

I have read all the documentation about web components and according to the standards it is not possible to apply isolated CSS styles (shadow) to the elements that the user introduces within a custom element (light DOM), that is, the content tha...
asked by 04.11.2017 / 10:38
2
answers

Convert CSS fragment to LESS

I want to pass this CSS to LESS, how would it be in LESS? .Item { box-sizing: content-box; display: inline-block; width: 259px; margin-right: 2em; margin-bottom: 40px; } .Item-name { margin-bottom: 0; margin-top: 0; height: 45p...
asked by 21.01.2016 / 23:46