CSS Framework Articles

Page 45 of 45

What do you mean by a Framework? Name the types of framework available.

Debomita Bhattacharjee
Debomita Bhattacharjee
Updated on 11-Jun-2020 599 Views

A framework is a set of rules, guidelines and best practices that are followed to get the desired results. A testing framework should have the features listed below:Should support more than one browser.Should run on multiple platforms.Should run on multiple programming languages like Java, Python, C#, Ruby and so on.Efficient handling of test data.Test case creation and updating are easy and maintainable.Provision for setting priority for each test case execution.Efficient test report generation.Proper test history maintenance for interpreting trends and analysis of execution results.Integration with continuous integration tools like Jenkins.Minimal manual intervention.Increases efficiency and productivity.Ensures efficient test code coverage.The types ...

Read More

Bootstrap complex form layout for combined vertical/inline fields with HTML

karthikeya Boyini
karthikeya Boyini
Updated on 04-Mar-2020 324 Views

Bootstrap form for combined vertical/ inline fields −                                 Left side                                 Right side                                               longer forms                                                                           shorter forms                                                   shorter forms                                                   shorter forms                                                   shorter forms                                                           Right    

Read More

Change HTML navbar color in Twitter Bootstrap 2.0.4

Arjun Thakur
Arjun Thakur
Updated on 04-Mar-2020 242 Views

To change navbar color,Set navbar background −navbarBackground: #c79810 ;Set navbar background highlight −navbarBackgroundHighlight: #eab92d ;Set navbar text color −navbarText: #f9ed9d ;Set navbar link color −navbarLinkColor: #f9ed9d ;

Read More

Bootstrap 3 truncate long text inside rows of a table in a responsive way with HTML

Nancy Den
Nancy Den
Updated on 04-Mar-2020 1K+ Views

To truncate long texts inside rows of a table, use the following CSS −.table td.demo {    max-width: 177px; } .table td.demo span {    overflow: hidden;    text-overflow: ellipsis;    display: inline-block;    white-space: nowrap;    max-width: 100%; }The following is the HTML −    This is demo text and we have made it a long text for a demo.

Read More

How to properly integrate HTML5 Boilerplate with Twitter Bootstrap?

Nishtha Thakur
Nishtha Thakur
Updated on 04-Mar-2020 250 Views

To integrate, use the Initializr. It is an HTML5 templates generator.You can also use Workless, an open source HTML, CSS & JS framework for developing front-end web applications faster.Workless uses Font Awesome web-font icons and allows you to add a lot of icons in your project. It can automatically style the form for you.

Read More
Showing 441–445 of 445 articles
« Prev 1 41 42 43 44 45 Next »
Advertisements