Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
I need to hide the second child of a div (#parentDiv) irrespective of the html-tag p, h2, h3 or div.
I could write all possible combinations in CSS, but it seemed to be clumsy as the html-tag of the element here can vary and is unpredictable. So I suppose writing up all HTML-tags is not a good approach.
Hence I tried below generalized approach in CSS, but did not work.
#parentDiv *:nth-child(2) {
display: none;
}
I do not need a JavaScript solution.
The code looks good and fine.. Check for brackets. You may have forgot to close brackets.
Related
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
It seems I can use display: none; on a button.
I can use visibility: hidden; but it doesn't do exactly what I want since the button is still present (just not display). Any other way I could remove a button using css only ?
Change this
<button style='display: none></button>
To This
<button style='display: none;'></button>
create a class in css file assuming it will be style.css
.nodisplay {
display:none;
}
and in your button
<button class="nodisplay"></button>
This way you can use the nodisplay class where ever you want on your site and no need to define style='display: none;' again and again in different HTML elements you want to hide
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
Why does this doesn't work?
*:hover {margin-left:50px;}
Cause when I move over the element nothing happened.
Are you putting it at the end of your CSS file? If not, it may be getting overwritten.
*:hover {
margin-left: 50px;
}
is working for me.
What browser are you testing on?
Try the code below
body *:hover {margin-left:50px;}
try
body :hover{
margin-left: 50px;
}
this will apply the :hover to every inner element in body
I've just tested on Chrome and seems to work
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Improve this question
I want the css for those 3 articles (.leftContent, .middleContent and .rightContent) to act like they are inline-block columns... the body is 70% width.
Fiddle
Use . instead of , to make width a float value:
Example
You can also use display:table-cell:
Example
Also, as you are using the same CSS properties for the same elements, you can use something like this :
article {
display: inline-block;
width:23.33%;
}
To apply the same CSS properties to all articles.
Example
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 9 years ago.
Improve this question
Have the following CSS/SCSS for my labels, however, the label.req:before is not applying the color attr. Does anyone know if it is possible modify the color of the content I'm inserting?
label {
display:block;
font-size: $tiny;
}
label.req:before {
content: "*";
color:$red!important;
}
label:after {
content: ": ";
}
Thanks,
Mark
It is definitely possible to modify the color of the content you are inserting. Your issue is most likely with the variable or the quotes surrounding it. (check if you need those quotes)
As of a month or so ago you can check out pseudo-elements in the chrome web inspector. Take a look at your source code using it and you should be able to fix this in a second
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I have the following
HTML:
<h1 class="largeTitle">Exikle</h1>
CSS:
h1.largetitle {
font-size: 9ee;
color: #2B547E;
}
However the color does not get implemented. I believe the code is correct so I'm not really sure what the problem is.
Wrong class and attribute
Class name are casesensitive and font-size is em not ee
Try
h1.largeTitle {
font-size: 9em;
color: #2B547E;
}
CSS is case sensitive with selectors(IDs & Classes) so h1.largetitle should be h1.largeTitle.