How to move the icon and text to left? CSS

To move the icon and text to the left using CSS, you can make use of flexbox or float.

Using Flexbox:
1. Wrap your icon and text in a container element, for example, a <div> with a class of "container".
2. Apply the following CSS to the container:
Code:
css
   .container {
     display: flex;
     align-items: center;
   }
This sets the container to use flexbox and aligns the items vertically.
3. Apply the appropriate styles to the icon and text elements. For example:
Code:
css
   .icon {
     margin-right: 5px; /* Adjust as needed */
   }
This adds some spacing between the icon and text.

Using Float:
1. Wrap your icon and text in a container element, for example, a <div> with a class of "container".
2. Apply the following CSS to the container:
Code:
css
   .container {
     overflow: auto;
   }

   .icon {
     float: left;
     margin-right: 5px; /* Adjust as needed */
   }
This sets the container to contain the floated elements and clears any additional floats.
3. Apply the appropriate styles to the text element. For example:
Code:
css
   .text {
     overflow: hidden;
   }
This prevents the text from wrapping around the floated icon.

Remember to adjust the CSS classes and styles to match your specific HTML structure and requirements.
 

About this Thread

  • 1
    Replies
  • 425
    Views
  • 1
    Participants
Last reply from:
Unknown user

Trending Topics

Online now

Members online
817
Guests online
4,526
Total visitors
5,343

Forum statistics

Threads
2,314,456
Posts
29,178,488
Members
1,184,148
Latest member
mingaw
Back
Top