CSS (Cascading Style Sheets) is a language used to control the visual presentation of HTML and XML documents including (but not limited to) colors, layout and fonts.
0
votes
0answers
18 views
How to create a “dot-dash” border with css or javascript?
In css3, they plan to add a border-style called "dot-dash" that will look like this:
new borders in css3 (link to an image on w3.org)
Unfortunately, that is not yet implemented in any browser, and I ...
0
votes
0answers
8 views
Can't adjust width on new Twitter widget
Yesterday I found that the Twitter feed widget thing on my site had disappeared. Turns out that they stopped support for the older version, so now I'm stuck with the new version. Problem is, I can't ...
0
votes
2answers
21 views
How can I do to merge font attributes in css
font-size: 100%;
font-family: "Palatino Linotype",Palatino, serif;
The text of web page show normally,and the font is Palatino Linotype.But I merge the code like
this.
font:100% "Palation ...
-1
votes
0answers
12 views
Internet Explorer 8 DOCTYPE ignored/commented
I am trying to make my web application work in IE8. There are some problems with the Offset and placement of some elements.
The application works fine in Chrome, Safari, Firefox and IE9/10 but when I ...
0
votes
0answers
5 views
Avoid a third-party Flex component to get application style
I have the following problem and wondering whether you guys can help me.
I have intergrated a third-party flex component in my Flex application but the component inherits the app style I have defined ...
-4
votes
0answers
15 views
List items not floating left in IE10
So I've tried almost every solution posted on here for getting list items to float left in IE10. It works in IE8 and 9, but for some reason in 10 it stacks them on top of each other.
I've tried ...
0
votes
0answers
8 views
Dynamically generated CSS MIME type not being recognized
This seems to be a recurring issue, but none of the solutions I've found have worked for me.
I'm using a file, dashboardStyles.php, to generate my css.
I link to the file by
<link ...
-2
votes
1answer
10 views
Is this possible to get facebook feed and twitter in just 1 feed?
I am making a website and I want to show the Facebook feed and also Twitter feed. Is it possible to merge thoose together instead of having 2 separate feeds?
3
votes
2answers
41 views
Smoothly increase the size of an image with jquery
I have a few images that will overlap each other on the page. I want one of these elements to slowly get bigger based on some event.
To do this, I'm using the jquery .animate method like so:
...
0
votes
3answers
21 views
How can i set height of my banner and vertically align its content to center?
I'm trying to make a banner on my webpage, the part on the top that is 700px wide and 80px high.
Code looks like:
<div class="container-narrow" style="heigth: 80px;">
<img ...
0
votes
0answers
8 views
How do I work with grids when I need padding and margin?
I've stayed clear of using any kind of grid systems because I always mess it up with padding and margin.
Let's sat my grids are at 90px and I have this code:
//HTML
<div class="col1">
<div ...
1
vote
3answers
49 views
html css Gif Animation
I have a .gif playing the animation once. It's doesn't loop amd I don't want it to loop.
I have 2 Image, ("1 PNG" and "1 GIF animated")
I want that every time that the mouse is over the PNG's image, ...
1
vote
2answers
37 views
How to change arrow of multiple accordion?
I've created multiple accordions in jQuery UI, but I have a problem:
How do I change the arrow icons if my accordions are nested like this?
Demo
0
votes
5answers
38 views
CSS Default selection without JS
Ok so Ive got a very basic CSS tab content system, very neat and clean, but I want to be able to create a default state so the first tab div is open without selection neccesary?
Any ideas, I would ...
2
votes
2answers
29 views
Can I select an element which doesn't contain another element?
In CSS, can I select an element which doesn't contain another element?
For example:
<div>
<p>ABC</p>
<p>
<q>123</q>
</p>
...