Jump to content

How to bring down a class without affecting another class


newcoder1010

Recommended Posts

Hi,

 

I have this html:


<section id = "block-webform-client-block-132"> 

<div class = "aa"> ....... </div>
<div class = "bb"> ....... </div>


</section>

I simply like to keep bb class same place. I only like to bring the aa class down. So it means, it will show bb first and then aa below bb.

 

I used this css: This bring both down. Can you please help?

.aa {margin-top:20px;}
Link to comment
Share on other sites


<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<meta name="viewport" id="viewport" content="target-densitydpi=high-dpi,initial-scale=1.0,user-scalable=no" />

<title>Document Title</title>

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>

<script type="text/javascript">

 

</script>

<style type="text/css">

#block-webform-client-block-132 {

clear: both;

display: flex;

flex-flow: column-reverse wrap;

}

</style>

</head>

<body>

<section id="block-webform-client-block-132">

 

<div class = "aa">AAAAAA ....... </div>

<div class = "bb"> BBBBBB....... </div>

 

 

</section>

</body>

</html>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...