My current project involves creating a grid layout in HTML using CSS. The goal is to use this layout for various elements such as images, text, and links.
What I envision is a visually appealing grid where each object fits together seamlessly with no gaps between the 'divs', automatically adjusting based on a predefined size.
I am determined to avoid relying on APIs or libraries for this project and prefer a solution that primarily uses CSS, JavaScript, jQuery, and HTML.
You can view my progress so far at http://jsfiddle.net/AeroMcDoom/quC8V/1/.
Although I have set up a basic 1x1 grid ('.a' with red background), I am relatively new to the positioning concepts in HTML and have been grappling with this challenge for over a week now.
.a {
width: 100px;
height: 100px;
float:left;
background-color:red;
}
(Note: '.a' represents the 1x1 grid and '.b' is the 2x2 grid)