Questions tagged as 'css3'

1
answer

Decrease fixed menu as the page scrolls

I want to know how to decrease the size of the menu when there is scrolling. This is my menu: header { position: fixed; width: 100%; box-shadow: 0 4px 20px -4px #ababab; background: rgba(249, 249, 249, .8); tr...
asked by 11.06.2015 / 21:37
2
answers

Media Query for PC

Hello, I basically want to make two models of my site, one for mobile devices and one for computers. I would like to make a code in CSS that is read only by PC browsers, but if I use for example: @media all and (min-width: 1000px) and (max-wid...
asked by 28.02.2015 / 15:59
1
answer

DIVs with float right without their inverted position

I would like to know how to ensure that two DIV , both with float:right , do not reverse the position, for example: <div id="divMaster"> <div class="pull-right" id="Div1"> </div> <div class="p...
asked by 26.06.2014 / 23:24
1
answer

List-style disappearing when using 'columns'

I'm using 'columns' in ul to split my menu into 2 columns. More in use, list-style some. For what reason? Is there a possibility of not disappearing? <ul id="menu-footer"> <li><a href="index.php">home</a></li>...
asked by 05.06.2014 / 22:01
1
answer

In CSS what are Implicit or Explicit attributes or attributes? What is the difference between an "Implicit Grid" and an "Explicit Grid"?

I've listened to CSS Grid Layout Grid Layout is built from display:grid , and I've been hearing the term "Implicit Grid" and "Grid Explicit" recurrently, but I did not understand it concept ... What would an Grid Explicit...
asked by 26.11.2018 / 13:26
2
answers

PDF view in iframe

I already have some time I'm looking for how to view the PDF files in an iframe or a div on the page itself instead of opening it in a new one and using Adobe Reader. But the problem is that the files are not fixed, they come from a code that...
asked by 25.03.2014 / 18:42
2
answers

How to animate a Radial-Gradient or Linear Gradient with CSS?

I'm trying to make an animation with CSS that would be a "sun" going through an image. The idea was to have something next of this result: Butinmycodethe"sun" jumps from side to side and does not get animated in the right way. How do I...
asked by 11.12.2018 / 16:23
1
answer

Invert CSS3 transition effect

I would like to know how to invert the element transition effect with CSS3 $('span').on('click', function(){ if($(this).text() == 'Mostrar Efeito') { $('div').css('max-height', '250px'); $(this).text('Resetar'); }...
asked by 10.10.2017 / 19:55
1
answer

Fade effect with CSS3

I'm trying to cause an (unsuccessful) effect of fading the image using the following code: @-webkit-keyframes fundo { 10%{ -webkit-filter: grayscale(10%); -moz-filter: grayscale(10%); -ms-filter: grayscale(10%); -o-fil...
asked by 11.09.2017 / 11:49
1
answer

transform scale does not work with expected

I want to increase the size of a certain part of the graph when hovering. I tried the transform but it does not work very well. example: link     
asked by 21.04.2015 / 17:44