×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Tutorix
Login
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Q/A
Library
eBooks
Courses
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Selected Reading
UPSC IAS Exams Notes
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Prabhas
has Published
104
Answers
Make your collections thread-safe in C#
Csharp
Programming
Server Side Programming
Prabhas
Published on 31-Aug-2018 13:29:05
The .NET Framework 4 brought the System.Collections.Concurrent namespace. This has several collection classes that are thread-safe and scalable. These collections are called concurrent collections because they can be accessed by multiple threads at a time. The following concurrent collection types use lightweight synchronization mechanisms: SpinLock, SpinWait, etc. These are new ...
Read More
Managed code vs Unmanaged code in C#
Csharp
Programming
Server Side Programming
Prabhas
Published on 31-Aug-2018 13:26:43
Unmanaged CodeApplications that are not under the control of the CLR are unmanagedThe unsafe code or the unmanaged code is a code block that uses a pointer variable.The unsafe modifier allows pointer usage in unmanaged code.Let us see the example −Examplestatic unsafe void Main(string[] args) { int var = ...
Read More
Usage of repeating-radial-gradient() CSS function
CSS
Web Development
Front End Technology
Prabhas
Published on 07-Jun-2018 11:24:18
Use the repeating-radial-gradient() function to repeat radial gradient.ExampleYou can try to run the following code to implement repeating-radial-gradient() function in CSS −Live Demo<!DOCTYPE html> <html> <head> <style> #demo { height: 300px; ...
Read More
Usage of rgb() CSS function
CSS
Web Development
Front End Technology
Prabhas
Published on 07-Jun-2018 07:55:28
Use the CSS rgb() function to define color using the RGB Model. You can try to run the following code to set the color with Reg-Green-Blue (RGB) model:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> h1 { background-color:hsl(0, ...
Read More
How to repeat linear gradients with CSS
CSS
Web Development
Front End Technology
Prabhas
Published on 16-May-2018 14:14:43
To repeat linear gradients with CSS, use the repeating-linear-gradient() function. You can try to run the following code to implement it:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> #demo { height: 100px; ...
Read More
With CSS set the element to retain the style values that are set by the last keyframe
CSS
Web Development
Front End Technology
Prabhas
Published on 16-May-2018 13:32:28
To set the elements to retain the style values set by the first keyframe, use the animation-fill-mode property with the forwards value.ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: ...
Read More
Create a differently spaced Color Stops with CSS Radial Gradients
CSS
Web Development
Front End Technology
Prabhas
Published on 16-May-2018 10:48:00
You can try to run the following code to create a differently spaced color stops with Radial Gradients:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> #demo { height: 200px; background: radial-gradient(orange 20%, ...
Read More
Add space inside a form’s text field with CSS
CSS
Web Development
Front End Technology
Prabhas
Published on 16-May-2018 08:05:12
To add space inside a form’s text field, use the CSS padding property.You can try to run the following code to achieve this:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> input[type = text] { width: 100%; ...
Read More
Set background image as fixed with CSS
CSS
Web Development
Front End Technology
Prabhas
Published on 09-May-2018 09:23:48
Use the background-attachment property to display the background image as fixed.ExampleYou can try to run the following code to implement the background-attachment property −Live Demo<!DOCTYPE html> <html> <head> <style> body { background-image: url("https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg"); ...
Read More
Style to highlight active HTML anchor with CSS
CSS
Web Development
Front End Technology
Prabhas
Published on 09-May-2018 08:39:58
To highlight active HTML anchor with CSS, use the :target selector.ExampleYou can try to run the following code to implement the :target Selector:Live Demo<!DOCTYPE html> <html> <head> <style> :target { border: 2px solid #D4D4D4; ...
Read More
1
2
3
4
5
6
7
...
11
Next
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout