The third and last edition of the Cascading Style Sheets styling language (often shortened to CSS3) brings together powerful visual capabilities and versatile design manipulation techniques.
0
votes
0answers
9 views
e.preventDefault() causing webkit mobile overflow to fail
I'm trying to solve a problem that's been puzzling me all weekend.
On mobile webkit (Safari iOS 5.1 in, my case) I'm unable to keep the -webkit-overflow-scrolling:touch behavior working when I place ...
0
votes
0answers
5 views
media queries GLITCH in IE
I am using media queries to justify a list of boxes.
Basically, I set up a media query for each #columns states, where I then use calc() to work out the margin-right on each of the elements (except ...
1
vote
1answer
24 views
Why is a sliver of space appearing between two divs stacked on top of each other
I have a scrollbar script running inside a div, looking nice. I was asked to add a trackbar underneath the scroll bar that is styled differently than the trackbar that came with the script. They want ...
-3
votes
2answers
25 views
how to build this structure with displays and without using floats
what is the html and css I should use for this layout (consider I don't want to use floats, and do want to use displays).
0
votes
0answers
3 views
Entypo font-face (icons) behaving strange with css
I trying to figure out from where this is coming :
Chrome Version 26.0.1410.65
I'm using this css code with the Entypo webfont. I tried to reproduce it on jsfiddle but with base64-encoded font it ...
0
votes
1answer
11 views
Same width for dropdown menu options when its content is variable
It seems to be a real silly problem, but I'm stuck at it and can't find a way out.
I'm working on a dropdown menu with pure CSS3 and all that I want is the following:
For now, I have this menu:
...
2
votes
1answer
47 views
Border Radius changes when setting CSS width using Jquery
The problem I'm having is that the border-radius of a <div/> gets removed when applying the css width property via jQuery. The <div/> that has the radius is also cropping off an absolute ...
0
votes
1answer
12 views
css3: element always rotates around center
I have this demo. As is shown, the element rotates around its center, but what I'm trying is to let it rotate around its left border (or left axis, or y-axis ?). Is this possible ?
Here is my html
...
1
vote
1answer
38 views
When using @media queries, does a phone load non-relevent queries and images?
I am wondering is if I base my CSS on a phone-based styling, then use @media queries for everything that is larger than that (desktops etc)... will the phone load the desktop styles at all?
I know ...
0
votes
2answers
22 views
Non-wrapping content inside a position: absolute container with variable width
I have some divs and buttons inside a div placed in a div with position: absolute, as in this jsfiddle
The code:
<div class="buttons">
<div class="button-line">
...
0
votes
0answers
10 views
how to allow overflow scroll on touch device when using stopPropagation?
This happens on my iPhone running iOS 5.1 with Safari. The fiddle below has working sample of a transition animation triggered by a swipe/touchmove. It's like a standard carousel thing.
My problem: ...
3
votes
2answers
52 views
Is it possible to rotate element, but not its content with css3?
I have the following element
<a href="#" class="some_class">Test Text Here</a>
and this element has light blue background and some padding. Today I came across one small challenge: I ...
1
vote
0answers
34 views
CSS Background cover that maintains aspect ratio but will always fill full width and height (and create scrollbars for overflow)
This is a particularly strange request, but the client won't budge.
I've almost got what I need currently with:
#main_content, .slide {position: relative; min-width: 1200px;} ...
0
votes
4answers
26 views
Override Font-Awesome Icon with Bootstrap's Icon
How would I override the font-awesome "icon-user" icon with the bootstrap one?
This is my header:
<head>
<meta charset="utf-8">
<title>Blah Blah Blah</title>
<link ...
1
vote
2answers
22 views
Dynamic change of html attributes with jQuery
I have this jQuery plugin - Plax: https://github.com/cameronmcefee/plax
I wanted it to be responsive, which I partly have: http://jsfiddle.net/4kRDL/
My problem is the html attributes:
<img ...
1
vote
3answers
12 views
How can I get rid of space which of no use when content is less than height of div, while using overflow:auto
HTML CODE
<p>overflow:auto</p>
<div class="auto">This adds the scroll bar based on you content.Here only vertical scroll bar needed so that is added n visible</div>
CSS ...
2
votes
2answers
19 views
Is it possible to recolor an image with a gradient map with HTML5 or CSS3?
Is it possible to recolor an image with a gradient map with HTML5 or CSS3? I am also open to using javascript libraries.
I followed this question, but this only greyscales and adjust rgb values:
How ...
2
votes
1answer
22 views
css3: two transitions with different timing functions (css3)
I want to use a transform for both scale and translateX, but each with a different timing function. Currently I have it working with absolute positioning instead of translateX, as follows:
...
1
vote
2answers
19 views
Why BigText plugin only works with static html?
I'm using BigText plugin, and I have a little issue. I hope to be clear:
The text of the divs which are seted on the air does not fit until the window is resized...
This fiddle speaks for itself.
...
1
vote
1answer
26 views
How can I define a CSS class to set the printed page in landscape mode?
I have created a CSS style sheet which can print an HTML page in landscape mode using the following @media rule:
@media print{
@page {size: landscape;}
}
I do not want to print all ...
0
votes
4answers
51 views
How do I add a div under a right floated div?
HTML
<div class="container">
<div class="left">
<div class="panel">My Panel</div>
</div>
<div class="right"></div>
</div>
CSS
...
0
votes
1answer
20 views
How can I prevent a responsive nav menu (powered by a CSS3 transition) from animating when different media queries take effect?
Preface
I'm trying to create a responsive website with a navigation menu that satisfies the following two requirements:
Navigation is fully visible in a normal browser window, laid out ...
-1
votes
1answer
18 views
webkit box vs boxflex
I recently ran across a tutorial where the instructor used this syntax:
display: -webkit-box;
http://www.youtube.com/watch?v=B-MNkBh7F2A @ 2:30 (created aug 2012)
I hadn't seen this before and ...
0
votes
0answers
7 views
CSS3 3D transforms don't trigger when not active tab
I'm working on a website with CSS3 3D tranforms that are triggered with jquery. Essentially when any button is pressed, it loads some content with ajax, is hidden with jquery at first (using ...
1
vote
1answer
26 views
Responsive navbar collapse not working Bootstrap
I have 2 navbars, A and B, originally, when you shrink the browser to max-width: 767px B sets on top of A, I needed A on top of B, this was answer in my previous question, I choose the css answer but ...
1
vote
2answers
18 views
How to I align the right container with the left container in terms of top margin?
I have the following code:
html:
<div class="container">
<div class="left">
<div class="panel">My Panel</div>
</div>
<div ...
2
votes
1answer
39 views
How to dynamically resize text within a span?
I'm using twitter-bootstrap and I'm trying to fit text (with a big font-size) contained in a span4.
I'm trying to change the size of the text to fits in the span correctly. In the next fiddle you'll ...
0
votes
1answer
27 views
Information box based on drop down selection
Here is what I'm trying to do.. I have a drop box and I want a floating box to show a definition based on the item.
For example, the list contains,
Item 1
Item 2
Item 3
Item 4
The user hovers ...
1
vote
1answer
51 views
Animating a “peek” effect with CSS only
I'm trying to create a "peek" effect with only CSS animations.
What I mean by that is that There will be a little blurb of content in a square, with a more detailed description underneath. When the ...
0
votes
2answers
52 views
How do I correctly use the 960 grid system if the body container itself will be 940px?
I am now using the 960 grid system and how can I have a centered container using the 960 grid system whose width is 940px and then the margin-left and margin-right is set to 10px.
I checked sites ...
0
votes
3answers
28 views
Syncing several CSS3 animations
I would need to able few css3 animations but I have been reading around and it seems it's not really easy. Is there any ways to do it with jQuery? Anyone have any experience on it?
Basically my html ...
0
votes
1answer
33 views
Problems styling a navigation menu active tab HTML/CSS
I am having a bit of trouble styling a navigation menu where you can select packages.
This is going to be a nav menu for a mobile website.
The active green li tab I need to be evenly spaced across ...
0
votes
0answers
22 views
Gradient transitioning through background-position does strange things
I'm trying to create a transition on a gradient background of a <div>. I'm trying to do it this way because I'd like to implement two different styles on my site a light one and a darker one. ...
-8
votes
0answers
38 views
How to parse an HTML5 file and CSS3 file [closed]
In my app i need parse HTML5 and CSS3 files.
I want to do this in C#. Is there any library to do this?
Thanks!
2
votes
3answers
70 views
Is there any rule for ordering CSS rules?
Is there any rule to order CSS rules? Normally whenever I edit CSS on Firebug, it re-orders the CSS while on chrome developer tools it remains as-is. While the Internet Explorer Developer Toolbar ...
2
votes
1answer
29 views
CSS3 transition only when class is added, not when removed
I have the following CSS example:
.message{
background-color: red;
transition: background-color 5s;
-webkit-transition: background-color 5s; /* Safari */
transition-delay: 2s;
...
4
votes
0answers
34 views
Trying to zoom image based on mouse origin, yet my math is slightly off
I'm working on a full screen image viewer, I'll temporarily open a dev URL here:
http://www.jungledragon.org/apps/jd3/image/704/great_grey_owl.html/zoom
This viewer is responsive and scales to your ...
2
votes
5answers
58 views
CSS making a button's background-color two different solid colors NOT gradient
How could I make a background of a button two solid colors? Please see examples below.
The overall aim is for the button to transition from the two shades of blue to the two shades of grey upon ...
0
votes
0answers
16 views
CSS3 background-image with bundled sprite image based on images with different original Image Size
Hello I am currently writing a sprite generator based on CSS 3 and my question is : What is the best practice to show CSS3 background-images with a bundled sprite image based on images with different ...
-5
votes
3answers
82 views
CSS: Can a div “float:middle” rather than “float:left;” with margin-left?
i would like
div 1 to float on the left
div 2 to float in the center
div 3 to float on the right.
but there is no such thing as "float in the center"
solutions ?
0
votes
2answers
23 views
HTML5 section footer inherits footer style
I'm building WEB with HTML5 for the first time and I encountered with the little problem.
I have code:
<header></header>
<section>
<header></header>
...
0
votes
1answer
18 views
Scrollable side bar with bootstrap fluid layout
I need some help with this, i want to have a sidebar and a content div using bootstrap fluid layout but i cant make the sidebar to be scrollable and the content div not. I already tried using ...
0
votes
5answers
49 views
How to make the entire area of a div clickable while excluding the checkbox that's on top of that area?
I have a div with a checkbox inside the div:
<div class="study-box set-box">
<span class="set-box-title"><i class="icon-th-list icon-white"></i>test set</span>
...
0
votes
2answers
34 views
How to fix the Wordpress (Twenty Eleven) CSS Menu Alignment?
Guys
I am having hard time tweaking a CSS part of the menu.
I have a website here at http://aaron.wordpresstiger.com where the last title "CONTACT" of the menu comes up with a line ahead and doesn't ...
1
vote
2answers
21 views
How to make exception in coding for safari visitors?
in a part of my code I have CSS3 animation and it seems does not work very well on safari, but it's fine on other browsers, so, I would like to make and exception, and if the browser is safari then it ...
0
votes
1answer
19 views
CSS3 Animations to only start after the page has been created
I have built a website that has lots of animations, using CSS3. The elements that are animated all have the position attribute set to absolute, and the container's position set to relative. Each ...
3
votes
2answers
70 views
css3 rotate according to cursor
I am trying to do the following:
Create a square div on the screen and whenever the cursor is hovering it, the square should horizontally rotate (rotateY).
This is what I have done:
...
0
votes
1answer
24 views
Is there a way to disable transitions during zooming?
When I zoom in on a page that uses CSS3's transition property on things such as width, height, padding, margin, etc., the elements will transition when you zoom in and out. Is there a way to disable ...
2
votes
1answer
29 views
Prevent hyperlink on touch and show hover state
I'm not sure why but when I touch a link on on a site I'm building on an iPhone/tablet it doesn't trigger the hover over state and instead just jumps straight through to the link. You can see the test ...
0
votes
1answer
12 views
Adding icons to options in multiselect?
How do I add icons to a multiselect component?
I have found a Firefox only solution (see my answer below); but have found nothing interoperable.
Should I just give up on this feature?





