css-and-css3 tutorials
Step-by-Step
CSS and CSS3 Tutorials
Comprehensive CSS and CSS3 tutorials designed for web developers seeking to enhance their expertise in Cascading Style Sheets. Learn the latest website development techniques to elevate your coding skills and stand out as an experienced developer among your peers.
CSS and CSS3 Tutorials:
5 CSS Techniques to Keep Two Divs Side by Side in a Row for Modern Website Development.
reading time
Reading Time:
00:07 Minutes
implement time
Implement Time:
00:20 Minutes

5 CSS Techniques to Keep Two Divs Side by Side in a Row

In modern HTML and CSS development, keeping two divs side by side is a fundamental layout requirement. Whether you're building a responsive website or a fixed-width layout, understanding different techniques ensures your design remains flexible and user-friendly. This guide covers five popular CSS techniques to achieve this, including absolute positioning, Flexbox, CSS Grid, float, and inline list.

Each method has its own use case, and knowing when to use which can improve your web development skills. Let's go through them one by one.

1. Using Position Absolute and Margin to Align Divs in a Row

The absolute positioning method is useful when you need fixed elements positioned exactly where you want. However, it is not a flexible solution for responsive design.

Example Code:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Absolute Positioning Example</title>
	<style>
		.container {
			position: relative;
			width: 100%;
			height: 200px;
		}
		.box {
			width: 200px;
			height: 100px;
			background-color: lightblue;
			position: absolute;
			top: 50px;
		}
		.box1 {
			left: 10px;
		}
		.box2 {
			left: 220px;
		}
	</style>
</head>
<body>
	<div class="container">
		<div class="box box1">Box 1</div>
		<div class="box box2">Box 2</div>
	</div>
</body>
</html>
Explanation:
  • position: absolute; makes the elements independent of their normal flow.
  • Using left and top, you can align elements side by side manually.
  • This approach works but lacks responsiveness.

2. Using CSS Flexbox for Two Side-by-Side Divs

Flexbox is the best method for modern responsive layouts. It is easy to use and highly flexible.

Example Code:
HTML
<style>
	.flex-container {
		display: flex;
		gap: 20px;
	}
	.flex-box {
		width: 200px;
		height: 100px;
		background-color: lightcoral;
		display: flex;
		align-items: center;
		justify-content: center;
	}
</style>
<div class="flex-container">
	<div class="flex-box">Box 1</div>
	<div class="flex-box">Box 2</div>
</div>
Explanation:
  • display: flex; makes the parent container flexible.
  • gap: 20px; adds spacing between divs.
  • align-items and justify-content help in alignment.

This is the most preferred method for modern layouts.

3. Using CSS Grid for Two Columns Layout

CSS Grid is another powerful tool for structuring layouts. It allows precise control over grid-based layouts.

Example Code:
HTML
<style>
	.grid-container {
		display: grid;
		grid-template-columns: 200px 200px;
		gap: 20px;
	}
	.grid-box {
		width: 200px;
		height: 100px;
		background-color: lightgreen;
		display: flex;
		align-items: center;
		justify-content: center;
	}
</style>
<div class="grid-container">
	<div class="grid-box">Box 1</div>
	<div class="grid-box">Box 2</div>
</div>
Explanation:
  • display: grid; enables grid-based positioning.
  • grid-template-columns: 200px 200px; defines two equal columns.
  • gap ensures spacing between divs.

This method is ideal for structured layouts.

4. Using Float Property for Two Divs Side by Side

Before Flexbox and Grid, float was widely used to position elements.

Example Code:
HTML
<style>
	.float-container {
		width: 100%;
	}
	.float-box {
		width: 200px;
		height: 100px;
		background-color: orange;
		float: left;
		margin-right: 20px;
		text-align: center;
		line-height: 100px;
	}
</style>
<div class="float-container">
	<div class="float-box">Box 1</div>
	<div class="float-box">Box 2</div>
</div>
Explanation:
  • float: left; makes divs float next to each other.
  • Adding margins prevents overlap.

Although effective, float is outdated and replaced by Flexbox/Grid.

5. Using Inline-Block for Side-by-Side Elements

The inline-block method allows divs to behave like inline elements while retaining block-level styling.

Example Code:
HTML
<style>
	.inline-container div {
		display: inline-block;
		width: 200px;
		height: 100px;
		background-color: pink;
		text-align: center;
		line-height: 100px;
		margin-right: 20px;
	}
</style>
<div class="inline-container">
	<div>Box 1</div>
	<div>Box 2</div>
</div>
Explanation:
  • display: inline-block; keeps divs inline while retaining block features.
  • Works well for simple layouts but lacks responsiveness.

Conclusion

Each CSS technique has its pros and cons:

MethodProsCons
Absolute PositioningPrecise controlNot flexible
FlexboxBest for responsive layoutsNot ideal for grid structures
CSS GridBest for complex layoutsOverhead for simple designs
FloatWorks in older browsersOutdated approach
Inline-BlockSimple and effectiveAlignment issues

For modern HTML and CSS development, Flexbox and CSS Grid are highly recommended. Float and inline-block can be useful in legacy code but are less efficient than modern methods.

By mastering these techniques, you can design flexible and responsive tables efficiently.

More Tutorials

Photoshop’s “Select and Mask” tool is an incredibly powerful feature that allows users to achieve professional-level background removal. Whether you’re editing

Applying gradient overlays in Adobe Photoshop is a powerful technique to enhance your images with smooth color transitions, adding depth, dimension, and visual interest. This

Ajax (Asynchronous JavaScript and XML) is a powerful web development technique used to load data asynchronously without refreshing the webpage. This helps create fast,

Making passport photos at home using Photoshop is a cost-effective and convenient solution. This step-by-step tutorial will guide you through the process of creating 8

Photoshop brushes are powerful tools for digital artists, enabling them to mimic traditional painting techniques and create unique textures. Whether you're designing

Layer styles are the secret weapon of many professional designers, offering a quick and effective way to add depth, texture, and dimension to your artwork. Whether you’re

The Gradient Mesh tool in Adobe Illustrator offers unparalleled control over color blending and transitions, making it ideal for creating photorealistic effects and intricate

WordPress is one of the most popular content management systems (CMS), making it a prime target for hackers. Without proper security measures, your website could be

Development Tools
css beautifier tool

Our online CSS beautifier & minifier is the professional choice for clean code. It offers customizable options for formatting, beautification, and minification. Enhance your CSS for optimal results now!

html beautifier tool

Our online HTML beautifier is the professional choice for cleaning up code. Compress & format HTML for improved structure and readability, with just a few clicks. Start beautifying today!

css gradient generator tool

Design unique CSS gradients with our easy to use, professional generator. Choose colors and customize with advanced features. Lightweight for fast and optimized output!

sort words tool

Use our powerful sort words tool to arrange text by alphabetical order or character length. Many options available to format the output as desired. Clean up your lists now, quickly and easily!

encoder decoder tool

Professional-grade text encoding and decoding is here with our advanced tool. Sophisticated features and capabilities for all your complex data transformation needs. Start now!

css filter generator tool

Our lightweight CSS filter generator lets you create CSS filters using hex values with multiple advanced options. Get the perfect look for your elements with this powerful & efficient tool!

email extractor tool

Extract email IDs from messy text with a single click using our professional tool. Lightweight & efficient, streamlines the process for you, saving time. Try now for effortless email extraction!

lorem ipsum generator tool

Our online Lorem Ipsum generator provides the best solution for your demo content needs. It offers many options, allowing you to create perfect placeholder text with precision. Get started now!

Our Services
website development service

Our Website Development Service offers custom, responsive design, ensuring seamless user experience across devices. From concept to launch, we create dynamic, SEO-friendly sites to elevate your online presence and drive engagement.

website redesign service

Revamp your online presence with our Website Redesign Service! We specialize in creating modern, user-friendly designs that boost engagement and conversion rates. Transform your site today for a sleek, professional look that stands out.

psd to html5 service

Transform your PSD designs into pixel-perfect, responsive HTML5 code with our professional PSD to HTML5 conversion service. Enjoy clean, SEO-friendly, and cross-browser compatible code tailored to bring your vision to life seamlessly.

logo design service

Elevate your brand with our professional Logo Design Service. We create unique, memorable logos that capture your business's essence. Stand out in the market with a custom logo designed to leave a lasting impression.

seo search engine optimization service

Boost your site's search engine presence! We offer expert SEO solutions, including image and code enhancements, to achieve top positions on Google, Bing, and Yahoo. Let us drive qualified traffic to your business today!

social media marketing service

Boost your brand with our Social Media Marketing Service! We specialize in crafting engaging content, driving growth through targeted ads, and maximizing your online presence. Drive growth and connect with your audience effectively.

wordpress development service

Experience our WordPress development services, offering tailored solutions for custom themes, plugins, and seamless integrations. Enhance your online presence with our responsive, secure, and success-optimized WordPress solutions.

image enhancement service

Enhance your website's visual appeal: We sharpen icons/images, correct RAW files & repair damaged/distorted/overly bright photos. Expect natural-colored, high-resolution JPEGs, complete with photographic effects & upscaling.

Blog Post

Introduction In today's digital age, having a well-optimized website is crucial for businesses and individuals alike. A website that loads quickly, is easy to navigate, and provides a seamless user experience can greatly...

Introduction Graphic design is a dynamic and creative field that requires the right tools to bring your visions to life. While there are many high-end paid software options available, not everyone can afford...

HTML5 Semantic Elements have become an important factor in improving SEO rankings due to their ability to provide search engines with more meaningful information about the content of a webpage. These elements go...

JavaScript extended libraries offer a wide range of capabilities for creating interactive and dynamic elements on websites. With these libraries, you can easily incorporate features such as drop-down menus, popups, modals, banner sliders,...

Colors are an incredibly important factor in website design, because they can have a significant effect on user experience and engagement. Colors create visual stimulation, which can influence how users process information. Using...

If you want your website and graphic designs to capture attention, incorporating exceptional fonts is a must! Incorporating elegant typefaces has the capacity to bring your design up a notch, making it more...

In the ever-evolving landscape of digital marketing, Search Engine Optimization (SEO) remains an important strategy for increasing organic traffic and increasing a website's online visibility. However, as search engines continually refine their algorithms...

Adobe Photoshop is a prominent software in image editing and retouching, offers a variety of functionalities. However, it might not be the ideal choice for all users due to several drawbacks. Its interface,...