Dear visitor, welcome to QtForum.org. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
How to control style of a DIV inside called HTML page
I am using QT and its first project. Calling/displaying .html pages when running qt. But the Buttons inside html pages are not coming as Qt dont support <button> or <input> tags as i can see.
So i was trying to use Styling /CSS, but Qt has very limited support for css.
How to give a border and button like look and feel in a div which is used .html?
[when u render in browser directly without Qt, buttons coming perfect. But inside QT its not at all ]
for example:
<div class="bEmphasized"><div class="button">
<a href="#EXECA" style="color:#fff;">CPU </a>
</div></div>
where
.button{
font-weight:bold;font-size:16px;
text-align:center;
cursor:pointer;
border-color:red;
border-style:solid;
}
..very very new at qt