Popular Posts
DateTime package bruce.lib; import java.io.Serializable; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Arrays... new operator/modifier/constraint new Operator Used to create objects and invoke constructors. // Create objects and invoke constructors Class1 obj  = new Class1(); // Cre... Calculated Field Formulas Conditional formulas ...
Stats
CSS priority
<html>
<head>
    <title>CSS priority</title>
    <style type="text/css">
    div#divline {
        color : blue !important;  // this will take higher priority for style display
    }
    </style>
</head>
<body>
    <div id="divline" style="color:red;">This is a line set font color red using attribute 'style'.</div>
</body>
</html>