hi i am new to css stylesheet....can anybody guide me....hope to hear soon from you...thanks feelnepal

Dani AI

Generated

Hi — welcome to CSS. Good call asking for guidance early. As and suggested, tutorials and references are useful, but it helps to follow a short, practical path so you get results fast.

Start small and practice every step:

  • Learn how to attach a stylesheet and the basics: selectors, the cascade, and specificity.
  • Master the box model (content, padding, border, margin) and common units (px, em, rem, %).
  • Move to layout: Flexbox for one-dimensional layouts, Grid for two-dimensional layouts.
  • Make pages responsive with media queries and mobile-first thinking.
  • Use browser developer tools to inspect, edit, and debug styles live.
    Try a tiny project (a header + nav + card grid) and iterate.

A tiny starter like this avoids width surprises:

* { box-sizing: border-box; }

.container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.item { flex: 1 1 200px; }

Quick troubleshooting tips: if a rule does not apply, check selector specificity and the order of CSS files, confirm your stylesheet path and rel="stylesheet", and use devtools to view computed styles. Avoid overusing !important. For hands-on references try MDN Learn CSS, the Flexbox guide on CSS-Tricks, and the Bootstrap getting-started docs if you plan to use a framework.

Recommended Answers

All 2 Replies

You forgot to mention what sort of guidance you looking for...
For basic tutorials you can go w3schools.com or you may explore w3c references for CSS


That site has good tutorials for HTML and CSS for beginners.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.