Questions tagged as 'css'

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
2
answers

Difference in application of font-weight bold / bolder

I would like to know the difference in using the CSS properties font-weight: bold and font-weight: bolder , because applying these properties I can not see difference between one and other as well as normal font-weight and lighter. Would it b...
asked by 10.12.2018 / 12:52
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
2
answers

Column that fills the screen according to width

I'm trying to do something that should be simple, but my knowledge in CSS is tricky. I would like to make a login screen with a fixed column on the right, as in the image below, but I would like the right column to fill all the width when the sc...
asked by 06.11.2018 / 10:34
2
answers

JQuery click event in .class selector

I created several div using jQuery where I assign them to the CSS class numero : for(...) textoHTML += "<div class='numero par'>"+sorteado+"</div> <!-- numero par-->\n"; ... textoHTML += "<div class='numero im...
asked by 28.02.2014 / 05:08
4
answers

popup open only once after being closed, even after reloading page

I would like to know how to create one of those popup which usually appear in large (not flash) portals, but with div and javascript pure, script detect this and it will not open again, even after reloading the page or...
asked by 11.04.2014 / 15:28
2
answers

Font-size: Leave a font 100% of the size of the DIV

I'm creating banners for printing and I came across a problem. I need to set a fixed div and height div, for example: #papel {width: 297mm;height: 210mm;border:1px solid red} Within this div, I have a SPAN #papel span{font-size: 9vw;bo...
asked by 16.05.2016 / 22:41
2
answers

How to change the color of the icon in the Materialize?

I'm using the framework materialize and to put an icon do it this way: <i class="material-icons">menu</i> It turns out that by default the icon is white, would you like to know how I can change the color of the icon? I've...
asked by 21.09.2015 / 04:13
2
answers

What is the difference between CssClass="example" and class="example"

I came across the following code snippet: <asp:Label ID="lblStatus" CssClass="labelFiltro" runat="server" Text="Status:"></asp:Label> Until then I did not know CssClass , I would like to know what is the difference of it t...
asked by 01.11.2017 / 15:24