Questions tagged as 'css3'

1
answer

Is it possible to make a negative border radius text box?

I would like to make this negative curve using CSS or Jquery, is it possible?     
asked by 15.12.2014 / 23:40
2
answers

Why use / not use * box-sizing?

I've read a lot about discussions about whether or not to use the box-sizing: border-box; property as follows: * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } I know she's very...
asked by 26.11.2015 / 20:42
3
answers

Why can not I center image using 'text-align: center'? [duplicate]

Follow the code below: HTML <div class="panel panel-default" style="height:400px"> <div class="panel-body"> <div class="form-group"> <div class="col-xs-6"> </div> </div> <...
asked by 30.12.2016 / 00:30
3
answers

How to make a pure spinner in css?

Is it possible to make a spinner with pure CSS without Javascript? <div class="main spinner"> O que é Lorem Ipsum? Lorem Ipsum é simplesmente uma simulação de texto da indústria tipográfica e de impressos, e vem sendo utilizado desde o s...
asked by 05.05.2018 / 18:13
1
answer

How to stylize the scroll bar?

Good, I have wasted some time looking for solutions to this but I do not find it, I have a scrollbar and liked to shrink its size. Can someone point me to a site or tell me what it takes to make this possible: Thank you     
asked by 12.06.2015 / 16:04
2
answers

How to make CSS ignore if the attribute is CAPITALIZED or lower case?

Imagine that I have a situation where I need to style multiple links on my page, but only links that end in .html , but I noticed that when I try to get the href attribute, I can only get the ones that end exactly with .html ,...
asked by 17.09.2018 / 16:40
3
answers

Use @media, @media screen and or @media only screen and Is there a difference?

I wanted to know if there is any difference in css when using one of these media queries, Example A: @media(max-width:770px) { .texto{ color:red } } Example B: @media screen and (max-width: 770px) { .texto{...
asked by 07.11.2018 / 16:13
2
answers

What is the clip property for?

I was taking a look at a code where I taught some techniques to create a responsive table. I came across the use of property clip , followed by rect(0 0 0 0); . Then I had this doubt: What is the clip property?...
asked by 11.04.2017 / 14:23
1
answer

How does "position: sticky" work?

The sticky is a new value of the position property and I read a little and understood that it is possible to create HTML elements that behave at one time as position: fixed and in another as position: relative dependi...
asked by 23.11.2016 / 12:47
3
answers

How to make a flex container have the width of the internal divs?

Good afternoon, I'm creating a layout with height:100% where I have 2 groups, and within each group I align the DIV s vertically and if any DIV does not fit in height max or there is resize da page, it goes to...
asked by 06.10.2016 / 17:24