Questions tagged as 'html'

2
answers

Error with CSS, bar appears where it should not

I'm working on a college project where I need to make a website for a pizzeria. I'm making an embryo of the site, but when I add the navigation menu, a bar appears on top of the corresponding div that should not exist: However,whenIrem...
asked by 08.05.2014 / 22:45
2
answers

Fixed-size table cell

How can I set the width of the column of two tables so that one does not have one cell larger than the other? When I try to create, the cell of the second table always gets larger than the cell of the first table, even setting <td...
asked by 09.06.2014 / 07:52
2
answers

How to make a menu that has a geometric figure in the center and is responsive?

So I'm a beginner in the Web Design area, and I'm having some issues with css on a site I'm developing. I have to make a fixed menu, which is nothing more than a normal bar, but that has a figure of a trapeze in its center and inside it, a se...
asked by 18.12.2014 / 23:44
5
answers

Problem with link rel="stylesheet / less" ...

I'll start studying LESS, but the problem is that I can not move to the first step. If I put <link rel="stylesheeet/less"...> does not work. Only work if I put <link rel="stylesheeet"...> without /less . I'v...
asked by 10.12.2014 / 15:00
3
answers

How to access a selector inside another in jquery?

I'm trying to access the div's of the specific '.contentParagraph' class of each of the '.content' divs, so that the events of one div do not interfere with the event of the other, link If you look, the paragraph in the first div '.conten...
asked by 31.08.2014 / 01:07
3
answers

createElement () method in PHP

In javascript, I can do: var span = document.createElement('span'); span.innerHTML = 'foo'; span.className = 'bar'; Is there something similar so that I can create a ElementNode in PHP, at least with the basic attributes (name, class...
asked by 23.01.2014 / 00:23
2
answers

Static list with search using JavaScript instead of PHP

In my work, I created pages as a static phone book to make it easier to search for them, but since there are many names, I would like to create a search field, but it is not possible to do this without dynamic code and database. Is it possible t...
asked by 08.03.2014 / 13:01
2
answers

Can the link tag be used outside the head tag?

Virtually all documentation related to tag <link> suggests calling it inside the block <head></head> . Example: <head> <link rel="stylesheet" type="text/css" href="theme.css"> </head>...
asked by 16.12.2018 / 14:24
2
answers

Sort placement of the DIV in CSS

Is there any way I can position .divdois above .divum with CSS only without having to change the position of HTML? <style> .divum { width: 100%; height: 200px; background: black; } .divdois { width: 100%; height...
asked by 21.05.2018 / 21:47
3
answers

How to know if you are doing resize in width or height?

Is there any way to see if the resize() of the window is occurring in width or is occurring at the height?     
asked by 31.01.2014 / 19:17