Questions tagged as 'css'

1
answer

I can not limit text with Japanese characters

I'm trying to limit the text "in Japanese" that will be displayed in some places of the page, it does not seem like php can handle this kind of character well. Example php :    echo substr ("あ え い う お", 0, 3); Here it shows only "あ" an...
asked by 14.03.2016 / 08:59
2
answers

Blur effect in different browsers

I'm trying to put a Blur Effect in some images on a page. At first I saw that Blur does not work (to my knowledge) in all modern browsers. But as "Mission given is mission accomplished" I have / have to figure out a way out of this. I though...
asked by 27.05.2014 / 22:54
3
answers

HOVER effect on a li and the components inside it

Good morning everyone! I have <li> in my project, I would very much like to use an image on the right side of EXIT of my <li> , I did so: <ul> <li id="sair">Sair<div class="icons"></div>&...
asked by 19.08.2014 / 14:26
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

Float: left, div falling by width of div

I'm having a problem with float:left; : for a width greater than the page the div drops, but I wanted it to continue to div earlier. HTML: <div id="menu" class="menu"> MENU </div> <div class="resto">...
asked by 05.03.2014 / 16:53
3
answers

Responsive Images

I am setting up a blog with responsive design and currently use width:100% to resize images within div . .eMessage>.pimg>img{ width:100%; -webkit-width: 100%; /*Chrome*/ -moz-width: 100%; /*Mozila*/ -ms-width: 100%; /*Intern...
asked by 03.02.2014 / 10:35
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
2
answers

Change the size of a chart with JS

I have the following chart: window.onload = function() { var can = document.getElementById('canvas'), spanProcent = document.getElementById('procent'), c = can.getContext('2d'); var posX = can.width / 2, posY...
asked by 04.01.2019 / 01:37
2
answers

Hover over one element that will take effect in another

I have the following code: .tratoresList h3{ font-family: "opensans-light-webfont"; font-size: 17px; color: #000; width: 210px; text-align: center; } .tratoresList strong{ font-family: "opensans-extrabold-webfont";...
asked by 11.11.2014 / 06:12
1
answer

Is it better to change native Bootstrap classes or create subclasses and override?

In the project I am studying / working on I am making minor adjustments to native Bootstrap classes to meet my needs. 1: Is this really the best practice? Or is it better to create our classes and override bootstrap? Or is there any other bes...
asked by 04.10.2017 / 15:45