Questions tagged as 'css3'

4
answers

How to leave all items in a menu with equal size regardless of quantity?

I want to make a menu that always leaves the items with proportional sizes, occupying all available width and adapting. .top-menu ul { width: 100%; } .top-menu ul li { display: inline; list-style: none; } .top-menu ul li a...
asked by 05.02.2014 / 20:27
0
answers

Extension to improve Atom productivity

I wonder if anyone knows of any tool that provides these functions in the Atom editor or Atom IDE? These functions help me with day-to-day productivity!     
asked by 27.10.2017 / 15:13
2
answers

How can I make the blur effect in IE?

I'm using this css code to make the blur effect a div : .blur { -webkit-filter: blur(25px); -moz-filter: blur(25px); -o-filter: blur(25px); -ms-filter: blur(25px); filter: blur(25px); } <div c...
asked by 01.08.2016 / 15:13
2
answers

How to make the href that works inside my div with focus?

I have a list that when I click on an item it receives a focus and a div with information appears. One of this information has a link but when I click on it, my div closes and does not open the page. Follow the code ... Full HTML: <ht...
asked by 10.06.2016 / 20:38
3
answers

How to make an Inverted Border-Radius?

I was testing border-radius and I got a debt ... Is there any way to with CSS invert the radius of curvature of border-radius ? This is the shape shape I would like to get Butfromthedocumentationitseemsthatborder-radiusdoesno...
asked by 02.08.2018 / 19:27
2
answers

References for web programming learning [closed]

What sites can I check to start studying web programming? I'm a beginner on the subject.     
asked by 06.12.2014 / 13:42
5
answers

How to put a colored layer over an image?

div { background: #000; width: 640px; height: 640px; opacity: 0.2; position: absolute; z-index: 99; } <span> <div></div> <img src="https://scontent.cdninstagram.com/t51.2885-15/e15/11909170_99939...
asked by 12.01.2017 / 05:06
0
answers

How to customize a page's unicode (emicode)?

In Windows operating systems when using emojis the font used by browsers usually is Segoe UI Emoji    Note: in Firefox it has its own "emojis system", I think it uses Twemoji Mozilla :   - link       What makes Firefox have...
asked by 19.09.2018 / 19:26
2
answers

Is it possible to combine first: child with: hover?

Is it possible to use these two pseudo-classes together? I have <ul> and I want the first <li> to pass the mouse to have a different property. I imagine it would be something like: ul li:hover:firt-child { } I...
asked by 13.04.2015 / 18:00
2
answers

How to do 3D Text with CSS

Is there any way to get this result with CSS only? Do a kind of 3D effect in text breads with CSS? Type the image below? body { background-color: #880000; } h1 { color: #fff; font-size: 100px; font-family: sans-s...
asked by 04.10.2018 / 20:06