Questions tagged as 'html'

2
answers

How to make a vertically zebrated table (toggle column colors)?

I know how to make a horizontally zebrated table, ie each row with alternating colors (the famous color yes and no color). I wanted to know now how I could by css to change the colors of the columns: the first column of a color and the second...
asked by 08.04.2017 / 17:56
4
answers

Why "html, body" and not just "body" to delete page margins?

When you want to delete the default margins of the page, I always see the following CSS code: html, body{ margin: 0; padding: 0; } Why use html, body if using only body what is the body page already solves? Example:...
asked by 09.02.2018 / 02:17
2
answers

Turn text into italic on hover!

Well, I have a paragraph and I want it to stay with font-style: italic; when I move the mouse over, what properties should I do in :hover ?! I would like it to be a 0.3-second transition     
asked by 23.12.2017 / 14:25
2
answers

How do I remove the default (browser) arrow in the select tag?

I'm doing a < select > customizable. The problem is the different renderings that happen in browsers. In fact, you would just have to hide the arrows that appear: in IE: andinFF: In Chrome and Opera they were hidden (Same render...
asked by 06.01.2015 / 19:57
4
answers

Mark checkbox if user type in input text in a table

I need when the user types in an input text, the checkbox of the respective table line should be checked, and if the user leaves the input text again in blank, the checkbox unchecks. Here is the code: <table class="table table-str...
asked by 27.08.2014 / 18:45
2
answers

Scrollbar Customization

Today, can we only use CSS to change the scroll bar customization of a DIV? If so, how can I do it? Otherwise what is the best script and how to use it?     
asked by 01.10.2015 / 22:38
2
answers

Popular a table with form data in angularjs

I am learning angular.js and am having difficulty with the following code var myapp = angular.module("myapp", []) myapp.controller('controller', function reset($scope){ $scope.reset = function(){ $scope.nome = " "; $scope.nota1 = "...
asked by 13.10.2015 / 15:23
2
answers

Image with text

I wanted to do something like this: The square is an image. I tried to do with table but it does not stay that way.     
asked by 29.04.2015 / 16:46
2
answers

clear input with javascript onchange event

I have 2 input: <input name='nome1'> <input name='nome2'> I need to create a javascript that clears the name2 when the value of the name1 is modified. Can anyone help me do this quite simply?     
asked by 20.04.2016 / 22:07
2
answers

Meanings of data-value, data-title, date-... attributes in HTML

I have seen in various HTML code such as: data-value, date-title, almost always are tag attribute names with the suffix: data-, I would like to know what they mean and without any use / advantage recommendation of use.     
asked by 13.02.2015 / 17:34