0% found this document useful (0 votes)
23 views1 page

Chat Got File Css

The document contains CSS styling rules for a webpage layout. It includes styles for the body, header, product sections, buttons, and footer, focusing on aesthetics such as colors, fonts, and spacing. The design is aimed at creating a clean and modern look for displaying products.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views1 page

Chat Got File Css

The document contains CSS styling rules for a webpage layout. It includes styles for the body, header, product sections, buttons, and footer, focusing on aesthetics such as colors, fonts, and spacing. The design is aimed at creating a clean and modern look for displaying products.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

body {

font-family: 'Arial', sans-serif;


margin: 0;
padding: 0;
background-color: #f5f5f5;
}

header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}

.product {
max-width: 400px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product img {
width: 100%;
height: auto;
}

.product h2 {
color: #333;
}

.price {
color: #007bff;
font-weight: bold;
}

button {
background-color: #007bff;
color: #fff;
padding: 10px;
border: none;
cursor: pointer;
}

footer {
text-align: center;
padding: 1em 0;
background-color: #333;
color: #fff;
}

You might also like