Questions tagged as 'css'

4
answers

Is it necessary to add prefixes in some CSS properties?

In many browsers, browser compatibility prefixes are added to CSS attributes. Example: .exemplo { -webkit-background-size: 50% 50%; -moz-background-size: 50% 50%; -o-background-size: 50% 50%; background-size: 50% 50%; } But if you l...
asked by 01.02.2014 / 00:59
5
answers

H1 stylized with center border with css

Hello,Iwantedtoputaborderthesamewayitisintheimage.Idonotknowwhattocallthistypeofborder,soit'shardtosearch.<h1>Destaques</h1>--------------------------------Highlights--------------------------------Iknowit'spossibletodothiswithcss,s...
asked by 08.09.2015 / 16:03
3
answers

How to reload or give Refresh in CSS page with Javascript [closed]

I made a code that should generate multiple inputs : var n = document.getElementById("numeroCamadas").value var ttt; var layers = {} for (var i =0; i<n; i++){ layers["layer" + i] = { 'espessura':0 ,...
asked by 09.05.2015 / 19:36
3
answers

How to remove the "whitespace-only text node" from the DOM that appears in the HTML

It seems that HTML by default puts damn " whitespace-only text node " between inline elements with this I get a "margin" between elements that I can not remove from DOM I know there are solutions like putting display:flex in the...
asked by 28.03.2018 / 15:31
3
answers

Path for accessing html, css, php etc folders [duplicate]

Could someone explain me this system of nives to access folder in the use of languages like html, css and php (../)(.../)(./).?     
asked by 15.04.2017 / 20:54
2
answers

Problem with font property

I'm using multiple properties in one. For example, instead of using font-family , font-size , I'm only using font , as below: .topoMenu li{ font: 20px 'Ubuntu', sans-serif, #000, 300; } The last one is font-weigth...
asked by 18.11.2014 / 18:02
2
answers

Equivalent hide and show in CSS [closed]

The code below does not run on all browsers: <button id="btn"> <img class="" src="/img/icone-formation.png" height="100%" width="100%" onclick="document.getElementById('f1').style.display...
asked by 17.01.2016 / 21:08
2
answers

How to put the background effect fixed and the whole screen? [duplicate]

I'm new to the Frond-End programmer and my boss wants me to put a fixed background effect as shown in the template below; link I've done some research to know how to implement, the problem is that I do not know what the name of this ty...
asked by 27.11.2015 / 13:17
2
answers

What is the "" operator in CSS? [duplicate]

In some css I see the operator " & gt ; ": #panel_conteiner > p { color:red; } #panel_conteiner div{ padding:5px; margin:2px; } <div id="panel_conteiner"> <p> teste teste </p> <fi...
asked by 07.12.2015 / 14:11
4
answers

Create layout for PHP and .Net applications

I work in a public body and we have numerous web applications in PHP and .Net . I'm working on a standard layout so that we maintain the visual identity across all systems. Is there any way (tool / framework / API) that every develope...
asked by 29.01.2016 / 13:41