Ajax Loader
×
HTML
<div id="wrapper">
1
<div id="wrapper">
2
  <ul>
3
    <li>abc</li>
4
    <li>abc</li>
5
    <li>abc</li>
6
    <li>abc</li>
7
    <li>abc</li>
8
  </ul>
9
  
10
  <div class="rightContent">
11
    
12
        Jun 9, 2011 - If you need to target all unordered lists, use ul {} . ... While an adjacent selector ( ul + p ) will only select the first element that is immediately .... when the :hover pseudo class is applied to anything other than an anchor tag. ... Let's say I want to select all divs, except for the one which has an id of container .
13
    class is applied to anything other than an anchor tag. ... Let's say I want to select all divs, except for the one which has an id of cont
14
    class is applied to anything other than an anchor tag. ... Let's say I want to select all divs, except for the one which has an id of cont
15
    vclass is applied to anything other than an anchor tag. ... Let's say I want to select all divs, except for the one which has an id of cont
16
    
17
    
18
  </div>
19
</div>
 
CSS
#wrapper{
1
#wrapper{
2
  width:400px;
3
  border:4px solid red;
4
  margin:10% auto;
5
 position:relative;
6
  display: -webkit-flex;
7
  display: flex;
8
}
9
 
10
ul{
11
  list-style:none;
12
  width:60px;
13
}
14
 
15
.rightContent{
16
  border-left:red solid 4px;
17
  background:#ed4567;
18
  padding:12px;
19
  text-align:justify;
20
  top:0px;
21
  left:130px;
22
  padding:20px; 
23
  width:300px;
24
  flex:2;
25
}
 

display:flex effect

CSSDeck G+