Questions tagged as 'css'

1
answer

How to hide / show one div at a time with Javascript? [closed]

function show() { var x = document.getElementsByClassName('bla').style.display; if (x == "none") { document.getElementsByClassName('bla').style.display = "inline"; } else { document.getElementsByClassName('bla').style.displ...
asked by 09.07.2017 / 19:52
1
answer

what link should I use in my event page article? to open and load individually?

Hello everyone, with a question that makes me sleepy.    In my page index.html I have a < section > called EVENTS , and I also have a page called events.html       In events.html I have some < article > e...
asked by 14.03.2018 / 15:23
1
answer

css / attachment

I have a problem. When I use any other attachment the image gets normal: But when I use fixed to follow the scroll, it zooms absurdly: CSS: @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,7...
asked by 24.12.2017 / 04:58
2
answers

How to create a dropdown list in html?

How to create something like this with html? Or what is best to use to create?     
asked by 25.12.2017 / 18:40
1
answer

How to align better HTML text

I want to align a text or image anywhere on the screen for example: Um texto aqui outro outro aqui e aqui     
asked by 18.02.2018 / 17:00
1
answer

Process form data with javascript and html

I wanted to make a program that the user would send 3 notes and after pressing "Calculate", you would be redirected to a page that would appear to your average. Who could help me: function calcular() { var ac1 = pars...
asked by 06.12.2018 / 15:34
1
answer

Separate by category the registration form

IhaveaformandIwouldliketoseparatebycategoriesthesameisanexampleintheimage,whichinthecasehas"Login Data" and "Contact Data" How do you do that? Thank you     
asked by 12.09.2018 / 02:27
1
answer

difficulty working with CSS on responsiveness

watch my page;           CSS; @CHARSET "UTF-8"; body { margin: 0; padding: 0; } #topo { width: 100%; height: 500px; background-color: #000000; margin: 0 auto; } #logo{ position:relative; top:0px; b...
asked by 03.12.2015 / 13:18
1
answer

Get value from a cell in jquery

ThisbuttonhasanONCLICKeventthatcallsafunction.Theoretically,itisalreadyinaline,itwouldonlyneedtheVALUEofacell.obs:AddressesisthetbodyIDandtheTESTistheCELLID.Currentfunction:functionteste(){varid=$(this).parent().find('td').attr('id');alert(**en...
asked by 26.10.2017 / 04:26
1
answer

Search for a word from Input in a TXT and find words that are in the same line in PHP

TXT file example:    John; 1       Peter; 2       Marlon; 3       Lucas; 4       etc ... Typing only the name in the Input precise the user ID appears, Input example: Marlon and when you enter only name in Input, show result i...
asked by 10.10.2018 / 18:08