logo

Kuinka rivittää tekstiä HTML-muotoon

Jos haluamme kääriä tekstin HTML-muotoon, meidän on noudatettava alla annettuja ohjeita. Näiden vaiheiden avulla kuka tahansa käyttäjä voi helposti kääriä minkä tahansa tekstin, joka näytetään verkkosivulla.

Vaihe 1: Ensinnäkin meidän on kirjoitettava HTML-koodi mihin tahansa tekstieditoriin tai avattava olemassa oleva HTML-tiedosto tekstieditorissa, johon haluamme kääriä tekstin.

 Wrap the text Hello User Your are at JavaTpoint Site . If we want to wrap the text in Html, then we have to follow the steps which are given on this page. 

Vaihe 2: Nyt meidän on käytettävä rivitys omaisuutta. Joten meidän on asetettava kohdistin head-tunnisteen väliin heti otsikkotunnisteen jälkeen. Ja sitten meidän on määritettävä tunnisteeseen luokka ja tunnistesektori, kuten seuraavassa lohkossa esitetään.

 Wrap the text div { width: 100px; border: 2px solid red; } div.class_name { word-wrap: normal; } 

Vaihe 3: Nyt meidän on määritettävä se luokka ennen tekstiä, jonka haluamme rivittää.

 Any text which we want to wrap 

Vaihe 4: Ja viimeinkin meidän on tallennettava tiedosto ja suoritettava se selaimessa .

 Wrap the text div { width: 100px; border: 2px solid red; } div.a { word-wrap: normal; } div.b { word-wrap: break-word; } Hello User Your are at JavaTpointSite.Ifwe want to wrap the text in Html then we have to follow the steps which are given in this page. <br> Your are at JavaTpointSite.Ifwe want to wrap the text in Html then we have to follow the steps which are given in this page. 
Testaa nyt

Yllä olevan HTML-koodin tulos näkyy seuraavassa kuvakaappauksessa:

Kuinka rivittää tekstiä HTML-muotoon