HTML/CSS - maximalizacia okien v gride 3x3

Programovacie jazyky, rady, poradňa...
kupo
Medium Professional
Medium Professional
Používateľov profilový obrázok
Príspevky: 1194
Registrovaný: 31 aug 2005, 16:51

HTML/CSS - maximalizacia okien v gride 3x3

Príspevok od používateľa kupo »

Ahojte,
potrebujem si nejak vyrobit stranku kt. mi nacita 9 stranok (v gride 3x3).

Nieco som pozliepal z internetu, len by som potreboval poradit ako tieto miniokienka maximalizujem tak aby sa prisosobili velkosti monitora.

Kód: Vybrať všetko

<!DOCTYPE html>
<html>

<body>
    <head>
        <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
    </head>

       <div class="modal-body container" style="text-align: center">
            <div class="row no-gutter">
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
            </div>
            <div class="row no-gutter">
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
            </div>
            <div class="row no-gutter">
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 100%" frameborder="0"> </iframe>
                </div>
            </div>
        </div>

</body>

</html>


edit:

no mam to... vobec nechapem preco je to tak... neni to ani presne tak ako som chcel ale je to "good enough"
dakujem za moralnu podporu :)

Kód: Vybrať všetko

<!DOCTYPE html>
<html>

<body>
    <head>
        <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
    </head>

       <div class="modal-body container" style="width: 100%">
            <div class="row no-gutter" style="height: 33vh">
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
            </div>
            <div class="row no-gutter" style="height: 33vh">
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
            </div>
            <div class="row no-gutter" style="height: 33vh">
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
                <div class="col-md-4">
                    <iframe src="https://cryptowat.ch/kraken/btceur" style="width: 100%; height: 33vh" scrolling="no"> </iframe>
                </div>
            </div>
        </div>

</body>

</html>
Napísať odpoveď