/    Sign up×
Community /Pin to ProfileBookmark

Remove space !!

Good morning !!

In the site of the below link, when I reduce the size in:

@media screen and (max-width: 900px)

Between the “Imagem 1” and the “below table” exist one space !! I trying to remove this space !!

[](http://terezanininha.com.br/Associa%C3%A7%C3%A3o%20Col%C3%A9gio%20Ramos%20Lopez/index.php)

Please somebody help
Thanks

to post a comment
CSS

4 Comments(s)

Copy linkTweet thisAlerts:
@ib_mintDec 16.2019 — > @CarlosWebWD#1611885 In the site of the below link, when I reduce the size in:
>
> @media screen and (max-width: 900px)
>
> Between the "Imagem 1" and the "below table" exist one space !! I trying to remove this space !!


Inside your @media query, remove float: none; declarations:

``<i>
</i>@media screen and (max-width: 900px) {

.imagem-curso {
width: 100%;
height: 200px;
/*! float: none; */
margin: 0px;
}

.cursos-metragem-dizeres {
width: 100%;
height: 150px;
/*! float: none; */
margin: 0px;
font-size: 3vw;
}
}<i>
</i>
``
Copy linkTweet thisAlerts:
@HarshShahDec 19.2019 — > @ib_mint#1611894 Inside your @media query, remove float: none; declarations:

Right !!

By this way, that space will remove but also border of the table will remove in @media screen and (max-width: 900px). so removing **float: none** will not work.
Copy linkTweet thisAlerts:
@HarshShahDec 19.2019 — @CarlosWebWD#1611885

You need to set **float:left** to the both the tag <image> and <div class="cursos-metragem-dizeres"> in **@media screen and (max-width: 900px).**

So by doing this, space will remove and other properties will remain as it is.

Set **Float:left** to image:
[CODE]@media screen and (max-width: 900px)
.imagem-curso {
width: 100%;
height: 200px;
float: left;
margin: 0px; [/CODE]

And set **float:left** to table div:
<i>
</i> @media screen and (max-width: 900px)
.cursos-metragem-dizeres {
width: 100%;
height: 150px;
float: left;
margin: 0px;
font-size: 3vw;

Try this. Hope This will help you.

Thank you.
Copy linkTweet thisAlerts:
@VITSUSADec 19.2019 — Have you got the solution?
×

Success!

Help @CarlosWebWD spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.20,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...