blob: 99917355f1d8184f7f1661ec8ae4a42d89c03fca [file] [log] [blame]
import QtQuick 2.0
Item {
width: 320
height: 480
Text {
anchors.centerIn: parent
font.pixelSize: 16
color: "blue"
textFormat: Text.RichText
text: "<p style=\"background-color:red\">Lorem ipsum</p><p style=\"background-color:green\">dolor sit amet,</p> consectetur."
}
}