-
I'm trying to put the images on the left with some right text, I have a section with images left and some text right, then another section with images and text. I would like to restart at every section. I tried to connect everything with a div but I cannot achive the desired resut. What is wrong in my md? markdown
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
No one know why I have the attached result? |
Beta Was this translation helpful? Give feedback.
-
There is a clear CSS property to reset previous floating elements. You can add a { align=left }
some image description
<p style="clear: both;" />
some other text below image and image description text Your markdown could rewrite as below without div: ##Pannello menu e comandi
{ align=left }
:material-numeric-1-circle:{style="color: DarkRed; font-size: 30px;"}
**Impostazioni**
Contiene le seguenti informazioni
* tasto per chiudere/aprire il menu
* tasto per impostazioni
* tasto per ricerca menu
utente collegato
nome del pc
:material-numeric-2-circle:{style="color: DarkRed; font-size: 30px;"}
**Menu**
Contiene il menu dell'applicazione, diviso in sezioni compattabili con apposito tasto a sinistra. Il tasto visualizzazione (a destra), permette di mostrare solo le voci di menu preferite e nasconde le altre, un'ulteriore pressione visualizza tutte le voci. Ogni voce di menu è composta da l'icona identificativa (non tutte le righe hanno la corrispondente icona), Descrizione della funzione, tasto indicazione preferito.
<p style="clear: both;" />
##Pannello accessori
{ align=left }
:material-numeric-1-circle:{style="color: DarkRed; font-size: 30px;"}
**Comandi Applicazioni**
Contiene il tasto per chiudere la zona accessori e i tasti per attivare le applicazioni
:material-numeric-2-circle:{style="color: DarkRed; font-size: 30px;"}
**Applicazione**
Zona destinata all'applicazione attiva
<p style="clear: both;" />
###Calcolatrice
{ align=left }
<p style="clear: both;" />
###Calendario
{ align=left }
<p style="clear: both;" /> |
Beta Was this translation helpful? Give feedback.
There is a clear CSS property to reset previous floating elements. You can add a
p
withstyle="clear: both;"
as a workaround to reset the floating likes below:Your markdown could rewrite as below without div: