Questions tagged as 'css'

1
answer

How can I apply HTML / CSS to a pure C program?

The programming club I'm attending has completed a program that functions as a stock controller and shows things that are available and things borrowed. It was done in pure C, so the display is quite archaic, It looks like this: | Control...
asked by 16.07.2017 / 00:10
2
answers

How to use fonts on my Site?

Hello, I've always used Google sources on my sites, but I came across a project that has fonts that do not exist in Google Fonts. Can I use an external source, whatever it is? It is like? (I apologize if there are any similar questions, but I di...
asked by 24.11.2015 / 13:39
3
answers

When we include a script or CSS file in the HTML document, does an HTTP request happen?

For example: <script src="file.js" > </script> or <link rel="stylesheet" href="style.css" > Doubt: When we do this, does request HTTP occur? Would it be more performative if I did not do this, and put e...
asked by 02.03.2017 / 02:24
1
answer

How does the process of rendering web pages by the browser work? [closed]

I know the DOM tree exists, but I do not know how rendering works. I know that learning this is important.     
asked by 05.03.2017 / 04:18
1
answer

How do I make a text editor in a TinyMCE-style textarea?

I would like to know what exactly I should study to be able to transform a textarea into a WYSIWYG text editor. Logically I know that I should use Javascript , but I can not imagine how the styles are applied in real time in the content with...
asked by 24.03.2017 / 20:58
3
answers

How do you try to make a website compatible with the main browsers? [closed]

I do not have much experience yet and wanted to know tips on what to do to increase the chances that a site is compatible with most browsers.     
asked by 07.02.2016 / 01:57
2
answers

Stylize element at various levels up

I would like to know how I can change the background of div # whatever by clicking on a li, as in the example below (using css only) <div class="whatever"></div> <section class="content"> <article class="per...
asked by 26.10.2016 / 14:32
4
answers

Do not show "overflow" arrows

I have a td with overflow . <td><div><?php echo $objProg->getagen(); ?></div></td> Css: td div { width:100%; height: 30px; overflow: auto; } With this CSS above it looks like this:...
asked by 08.04.2016 / 16:54
2
answers

How to create Fixed Header without javascript?

I want to create a header on a html page, responsive style that suits the mobile platform and the reduction of the page in the browser, how do I? Note: Nothing I read on the internet at the time was of use, I want without javascript.     
asked by 26.04.2016 / 20:59
1
answer

Create circle around numbers with JS and CSS

I'm starting with css and I'm having a question I have a div called numbers and inside it I have numbers from 01 to 99, how can I insert a circle into them with css without having to use div? <div id="numeros"> 01 02 03 04 05 </div...
asked by 20.04.2016 / 18:24