Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feedback entrytask 2 #1

Open
hnngo opened this issue May 15, 2021 · 0 comments
Open

Feedback entrytask 2 #1

hnngo opened this issue May 15, 2021 · 0 comments

Comments

@hnngo
Copy link

hnngo commented May 15, 2021

  1. Khi viết css, nên tránh dùng html tag và anh không khuyến khích dùng loose selector như là > ~ +.
.user > h1{
    color: #eb5757;
}

.user > p{
    color: black;
    font-size: 25px;
}

.user .username{
    color: #f2994b;
}

.user > h2{
    color: #2f80ed;
}

Ví dụ nếu trong div.user mà mình add thêm 1 h1 thì nó cũng sẽ bị ảnh hưởng do dòng đầu css em viết.
Anh gợi ý cứ đặt class cho element mình cần style. Ví dụ, em có thể thêm 1 class label cho mỗi p tag thì giờ em đổi css thành .user .label. Tuy dài hơn nhưng ít dẫn đến lỗi hơn khi mình mở rộng code.

            <div className="user">
                <h1 className="name"> { user.name } </h1>
                <p className="label username"> { user.username } </p>
                <h2 className="company"> { user.company.name } </h2>
                <p className="label email">  
                    <img src={email} width = {size} height={size}/>
                    { user.email }
                </p>
                <p className="label adress">
                    <img src={address} width = {size} height={size}/>
                    { user.address.street+", "+user.address.suite+", "+user.address.city+", "+user.address.zipcode }
                </p>
                <p className="label phone">  
                    <img src={phone} width = {size} height={size}/>
                    { user.phone }
                </p>
                <p className="label website">  
                    <img src={website} width = {size} height={size}/>
                    { user.website }
                </p>
            </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant