Questions tagged as 'css'

2
answers

Modify TAGs that do not have such class

When we want to modify a div, and it has a class such, it is easy. .umaclass{ /*Formatação*/ } But let's suppose I want to get a div that does not have such a class, without modifying the ones that have the class ... How do I do? For...
asked by 24.05.2017 / 19:59
3
answers

Change image color with CSS

Is it possible to change the color of an image with CSS? Applying a filter maybe, or something like that. Has as? For example, an image like this: link     
asked by 23.06.2017 / 21:27
3
answers

Increase the word size, value of the placeholder attribute of the type inputs?

How do I increase the size of the word, value of the placeholder attribute of the text input tag? <input type="text" name="login" placeholder="Login" required id="login">     
asked by 08.02.2017 / 23:37
2
answers

Change background of A when hovering on LI

I have the following code: <li class="menu-item"> <a href="http://stanlee.com.br"> <span class="jaw-menu-href-title">Home</span> </a> </li> When I hover over li I want the background to change to whi...
asked by 13.02.2017 / 16:29
2
answers

How to change the type of text in a list with JQuery?

How can I make an effect on the text inside the lists with JQuery? For example, when the mouse rolls over the text in the lists, the color becomes clearer and the text is underlined. p { line-height: 1em; } h1, h2, h3, h4 {...
asked by 13.12.2018 / 21:21
1
answer

Change site background with script according to day time

I have this script that changes the color of the website as the page refreshes. <script> function random_bg_color() { var x = Math.floor(Math.random() * 256); var y = Math.floor(Math.random() * 256); var z = Math.floor(Math.r...
asked by 04.01.2019 / 01:21
2
answers

Placing scroll horizontally

I wanted to put a scroll horizontally, so it can be accessed on mobile screens. How do I do this? .menu_topo_geral { width: 100%; height: 50px; background: #616161; } .menu_topo_geral div { cursor: pointer; tex...
asked by 22.12.2016 / 20:40
1
answer

My carousel with bootstrap is not working!

<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="bootstrap/js/bootstrap.min.js"> <link rel="stylesheet" type...
asked by 22.12.2016 / 14:42
1
answer

click the div increase click again decrease

If you can help me with this question I would like to click on a div that is fixed on the rod and it increases and then click again and it decreases, how do I do that?     
asked by 26.11.2016 / 02:56
1
answer

How to make the width be the one of the text and not of the div

I want the H3 background to take only the size of the text CSSdiv.header{background:url(../img/bg.jpg)no-repeatcentercenterfixed;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding-...
asked by 12.12.2016 / 02:39