import QtQuick 2.0 import QtQuick.Controls 1.1 import QtQuick.Controls.Styles 1.1 Rectangle { width: 360 height: 360 Column { anchors.centerIn: parent Row { spacing: 20 Rectangle { height: 40 width: 10 color: "yellow" baselineOffset: 30 anchors.baseline: ref.baseline Rectangle { y: parent.baselineOffset width: parent.parent.width height: 1 color: "red" opacity: 0.5 } } Text { id: ref text: "Text" } Text { text: "Text" font.pixelSize: 16 anchors.baseline: ref.baseline } TextInput { id: text_field_bad text: "TextInput" anchors.baseline: ref.baseline } } } }