Questions tagged as 'css'

1
answer

Pin icon on lower right corner using Materialize

First time I'm using materialize . I would like to know how to set an icon in the lower right corner. <a class="btn-floating btn-large cyan pulse right"><i class="material-icons">edit</i></a> Natively if there is...
asked by 15.09.2018 / 01:35
1
answer

Does the base tag affect scripts and styles in an html document?

Having http://exemplo.com/diretorio1/documento1.html the code: <!DOCTYPE html> <html> <head> <title>Uma página</title> <base href="http://exemplo.com/diretorio2/" /> <sc...
asked by 03.11.2014 / 14:13
1
answer

Make responsive iframe content (Google DFP)

So, I have a somewhat complex problem. Knowing that it is not possible to CSS style the content of a <iframe> , I do not know any other way to achieve the desired goal. I even tried with JavaScript, but nothing worked, some tests I h...
asked by 16.03.2018 / 18:22
1
answer

Custom password window for the same page

I want to put a password on the page when it is accessed (simple), in a window (type alert) with password that appears before loading the page, I wanted this custom "alert" just like a modal or any custom window ... Very simple even people ar...
asked by 18.08.2018 / 15:29
1
answer

Problem with jQuery mouseleave function to trigger popup

I'm using the mouseleave function to open a popup when the user moves the mouse out of the site. This is the code: jQuery('body').mouseleave(function() { if (!jQuery('body').hasClass('leave-on') && localStorage.ge...
asked by 21.07.2018 / 04:39
2
answers

How to "validate" input

I'm looking for a method to check if the input's required with the page are valid every time I click the save button, but I'm trying to do this without having to check one by one, below what I've done. I had to leave the button as "type = 'bu...
asked by 27.04.2018 / 16:48
1
answer

How to change the color of the DropDownList of Kendo UI according to the Status variable?

Can anyone tell me if I can change the color of the Kendo DropDownList according to a Status variable? For example: If the user is Active - > Assumes the color Green If the user is Inactive - > Assumes the color Red If you can...
asked by 19.12.2014 / 19:29
1
answer

JQuery - access array error

I need to compare two arrays, one with calendar days and one with registered days. When the registered day is corresponding to the value of the innerHTML property of the array of div it should paint the background of this div...
asked by 02.01.2015 / 22:19
1
answer

What's the difference in using transition: all and transition: [specific property]?

Doing a simple CSS animation to increase height of a div using transition: all and a question came up. See the example: div{ width: 100px; height: 30px; background: red; transition: all 1s ease; } d...
asked by 03.06.2018 / 00:59
1
answer

How to work with CSS visibility?

Greeting, What I need to do is make an image invisible when the screen resolution reaches 576px, but I'm not succeeding, I'm doing this; HTML <div class="col-sm-2 topo_branco animated fadeInDown"> <img src="assets/img/seta...
asked by 08.06.2018 / 15:07