๐Ÿ”’ Closed Html and CSS problem

Status
Not open for further replies.

vien3211

Honorary Poster
Ano po kayang diskarte para ma-achieve po ung ganito?
1663008367213.png

sa mga comments na part na lang po kasi ako kulang. Salamat!
 
yan yung pic ng gawa mo i sinend ng sir mo? If meron actual pic ng gawa mo patingin web designing kasi major ko baka matulungan kita, gusto ko lang makita yung actual picture ng gawa mo para malaman ko kung ano mali if possible code na din
 
yan yung pic ng gawa mo i sinend ng sir mo? If meron actual pic ng gawa mo patingin web designing kasi major ko baka matulungan kita, gusto ko lang makita yung actual picture ng gawa mo para malaman ko kung ano mali if possible code na din
opo, yan po ung sinend ni sir.
ito po ung akin:
1663009647482.webp
 
HTML:
<div>
    <div class="column" id="first-column">
        <div class="review-block">
            <p class="reviewDiv"><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> Ditching the cheeky, self-aware wink that
                helped to excuse the
                concept's inherent corniness, the movie attempts to look polished and 'cool,' but the been-there
                animation can't compete with the then-cutting-edge puppetry of the 1990 live-action movie.
            </p>
            <p class="critic-review"><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic">
                Peter Debruge
                <br/> Variety
            </p>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/fresh.gif" alt=""> <q>TMNT is a fun, action-filled adventure that will satisfy
                    longtime fans and generate a legion of new ones.</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Todd Gilchrist
                    <br/> IGN Movies
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>It Stink!s</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Jay Shreman
                    <br/> Unemployed
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>The rubber suits are gone and they've been redone with
                    fancy computer technology, but that hasn't stopped them from becoming dull.</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Joshua Tyler
                    <br/> CinemaBlend.com
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>My Review: adventure movie</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Km Hira Kafle
                    <br/> Software Developer
                </p>
            </div>
        </div>
    </div>
    <div class="column" id="second-column">
        <div class="review-block">
            <p class="reviewDiv"><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> The script feels like it was computer generated. This mechanical presentation lacks the cheesy charm of the three live action films.
            </p>
            <p class="critic-review"><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic">
                Steve Rhodes
                <br/> Internet Reviews
            </p>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>The striking use of image and motion allows each sequence to leave an impression. It's an accomplished restart to this franchise.

                </q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Mark Palermo
                    <br/> Coast (Halifax, Nova Scotia)
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/fresh.gif" alt=""> <q>My Review: Good one!!</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Km Hira Kafle
                    <br/> (Unemployed)
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>Impersonally animated and arbitrarily plotted, the story appears to have been made up as the filmmakers went along.</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Ed Gonzalez
                    <br/> Slant Magazine
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/fresh.gif" alt=""> <q>My Review: Good one!!</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Km Hira Kafle
                    <br/> (Unemployed)
                </p>
            </div>
        </div>
    </div>
</div>

CSS:
.column{
    width: 47%;
    float:left;
}
#first-column{
    margin-left:2%;
    margin-right: 1%;
}
#second-column{
    margin-left: 1%;
    margin-right:2%;
}
.review-block{
    margin-bottom: 20pt;
}
.reviewDiv{
    width: auto;
    border: 2px solid grey;
    background-color: #E8DC9B;
    font-size: 8pt;
    font-weight: bold;
    vertical-align: text-top;
    padding:8px;
}
.reviewDiv p{
    padding:1%;
}
.reviewDiv img{
    float:left;
    margin-right: 5px;
    vertical-align: middle;
}
.critic-review img{
    margin-right:5px;
    float: left;
}

JSFiddle:

konting tweaks na lang sa css.
 
HTML:
<div>
    <div class="column" id="first-column">
        <div class="review-block">
            <p class="reviewDiv"><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> Ditching the cheeky, self-aware wink that
                helped to excuse the
                concept's inherent corniness, the movie attempts to look polished and 'cool,' but the been-there
                animation can't compete with the then-cutting-edge puppetry of the 1990 live-action movie.
            </p>
            <p class="critic-review"><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic">
                Peter Debruge
                <br/> Variety
            </p>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/fresh.gif" alt=""> <q>TMNT is a fun, action-filled adventure that will satisfy
                    longtime fans and generate a legion of new ones.</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Todd Gilchrist
                    <br/> IGN Movies
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>It Stink!s</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Jay Shreman
                    <br/> Unemployed
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>The rubber suits are gone and they've been redone with
                    fancy computer technology, but that hasn't stopped them from becoming dull.</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Joshua Tyler
                    <br/> CinemaBlend.com
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>My Review: adventure movie</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Km Hira Kafle
                    <br/> Software Developer
                </p>
            </div>
        </div>
    </div>
    <div class="column" id="second-column">
        <div class="review-block">
            <p class="reviewDiv"><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> The script feels like it was computer generated. This mechanical presentation lacks the cheesy charm of the three live action films.
            </p>
            <p class="critic-review"><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic">
                Steve Rhodes
                <br/> Internet Reviews
            </p>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>The striking use of image and motion allows each sequence to leave an impression. It's an accomplished restart to this franchise.

                </q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Mark Palermo
                    <br/> Coast (Halifax, Nova Scotia)
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/fresh.gif" alt=""> <q>My Review: Good one!!</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Km Hira Kafle
                    <br/> (Unemployed)
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/rotten.gif" alt=""> <q>Impersonally animated and arbitrarily plotted, the story appears to have been made up as the filmmakers went along.</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Ed Gonzalez
                    <br/> Slant Magazine
                </p>
            </div>
        </div>
        <div class="review-block">
            <div class="reviewDiv">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/fresh.gif" alt=""> <q>My Review: Good one!!</q>
                </p>
            </div>
            <div class="critic-review">
                <p><img src="https://hiradadiamond.github.io/movieReview/images/critic.gif" alt="critic"></p>
                <p>Km Hira Kafle
                    <br/> (Unemployed)
                </p>
            </div>
        </div>
    </div>
</div>

CSS:
.column{
    width: 47%;
    float:left;
}
#first-column{
    margin-left:2%;
    margin-right: 1%;
}
#second-column{
    margin-left: 1%;
    margin-right:2%;
}
.review-block{
    margin-bottom: 20pt;
}
.reviewDiv{
    width: auto;
    border: 2px solid grey;
    background-color: #E8DC9B;
    font-size: 8pt;
    font-weight: bold;
    vertical-align: text-top;
    padding:8px;
}
.reviewDiv p{
    padding:1%;
}
.reviewDiv img{
    float:left;
    margin-right: 5px;
    vertical-align: middle;
}
.critic-review img{
    margin-right:5px;
    float: left;
}

JSFiddle:

konting tweaks na lang sa css.

thank you po!
 
Status
Not open for further replies.

About this Thread

  • 17
    Replies
  • 1K
    Views
  • 3
    Participants
Last reply from:
vien3211

Online now

Members online
1,013
Guests online
753
Total visitors
1,766

Forum statistics

Threads
2,275,582
Posts
28,964,240
Members
1,231,872
Latest member
yannahhh
Back
Top